.eslintrc.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. module.exports = {
  2. root: true,
  3. parserOptions: {
  4. ecmaVersion: 'latest',
  5. sourceType: 'module',
  6. allowImportExportEverywhere: true,
  7. ecmaFeatures: {
  8. jsx: true,
  9. },
  10. },
  11. env: {
  12. browser: true,
  13. node: true,
  14. es6: true,
  15. },
  16. extends: ['prettier', 'plugin:vue/recommended', 'eslint:recommended'],
  17. rules: {
  18. 'vue/html-closing-bracket-newline': 0,
  19. 'vue/html-self-closing': 0,
  20. 'vue/html-indent': 0,
  21. 'vue/multi-word-component-names': 0,
  22. 'vue/attributes-order': 0,
  23. 'vue/no-v-html': 0,
  24. 'vue/attribute-hyphenation': 0,
  25. 'no-console': 0,
  26. 'no-unused-vars': 1,
  27. // 驼峰变量命名
  28. camelcase: 0,
  29. eqeqeq: 1,
  30. 'vue/no-mutating-props': 1,
  31. 'vue/no-unused-components': 1,
  32. // vue/require-valid-default-prop 这一项其实应该是2/错误必检, 但是涉及的文件是在太多了, 怕一下子全改会爆炸
  33. 'vue/require-valid-default-prop': 1,
  34. // 这一项真的是管得太宽了, 跟prettier严重冲突
  35. "vue/singleline-html-element-content-newline": 0,
  36. 'no-var': 1,
  37. 'no-useless-escape': 1,
  38. 'prefer-const': 1,
  39. 'object-shorthand': 1,
  40. 'dot-notation': 1,
  41. 'spaced-comment': 1, // 双斜杠注释后应紧接空格
  42. 'no-case-declarations': 1,
  43. 'arrow-parens': 2,
  44. }
  45. }