quanyawei
2023-11-23 25aaab3aabb463d73015a1d051799692a24ed04d
.eslintrc.js
@@ -4,13 +4,20 @@
    node: true
  },
  extends: [
    'plugin:vue/recommended', // 此项是用来配置vue.js风格
    'eslint:recommended' //继承Eslint中推荐的(打钩的)规则项
    // 参考vuejs官方的eslint配置: https://eslint.vuejs.org/user-guide/#usage
    'plugin:vue/recommended',
    // 覆盖 ESLint 配置,确保 prettier 放在最后
    'eslint:recommended'
  ],
  parserOptions: {
    ecmaVersion: 13,
    ecmaVersion: 10,
    sourceType: 'module'
  },
  plugins: ['vue'],
  rules: {}
  rules: {
    'space-before-function-paren': 0,
    'no-console': 'off',
    'no-unused-vars': 'off',
    'vue/attribute-hyphenation': 0 // 忽略属性连字
  }
}