.eslintrc.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. module.exports = {
  2. root: true,
  3. env: {
  4. browser: true,
  5. node: true,
  6. },
  7. parserOptions: {
  8. parser: '@babel/eslint-parser',
  9. requireConfigFile: false,
  10. },
  11. extends: ['@nuxtjs', 'plugin:nuxt/recommended', 'prettier'],
  12. plugins: [],
  13. // add your custom rules here 0 = off, 1 = warn, 2 = error
  14. rules: {
  15. 'nuxt/no-globals-in-created': 0,
  16. 'vue/multi-word-component-names': 0,
  17. 'vue/attributes-order': 0,
  18. 'vue/no-v-html': 0,
  19. 'vue/attribute-hyphenation': 0,
  20. 'no-console': 0,
  21. 'no-unused-vars': 1,
  22. camelcase: 1,
  23. eqeqeq: 1,
  24. 'vue/no-mutating-props': 1,
  25. 'vue/no-unused-components': 1,
  26. // vue/require-valid-default-prop 这一项其实应该是2/错误必检, 但是涉及的文件是在太多了, 怕一下子全改会爆炸
  27. 'vue/require-valid-default-prop': 1,
  28. 'no-var': 1,
  29. 'no-useless-escape': 1,
  30. 'prefer-const': 1,
  31. 'object-shorthand': 1,
  32. 'unicorn/prefer-includes': 1,
  33. 'dot-notation': 1,
  34. 'import/order': 1,
  35. 'spaced-comment': 1, // 双斜杠注释后应紧接空格
  36. },
  37. }