.eslintrc.js 720 B

1234567891011121314151617181920212223242526272829
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. 'extends': [
  7. 'plugin:vue/essential',
  8. 'eslint:recommended'
  9. ],
  10. parserOptions: {
  11. parser: '@babel/eslint-parser'
  12. },
  13. rules: {
  14. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  15. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  16. //在rules中添加自定义规则
  17. //关闭组件命名规则
  18. "vue/multi-word-component-names": "off",
  19. },
  20. overrides: [{
  21. files: [
  22. '**/__tests__/*.{j,t}s?(x)',
  23. '**/tests/unit/**/*.spec.{j,t}s?(x)'
  24. ],
  25. env: {
  26. jest: true
  27. }
  28. }]
  29. }