.eslintrc.js 602 B

1234567891011121314151617181920212223242526
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. 'extends': [
  7. 'plugin:vue/essential',
  8. 'eslint:recommended'
  9. ],
  10. rules: {
  11. 'no-console': 'off',
  12. 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
  13. "semi": "off",
  14. 'no-unused-vars':"off",
  15. 'no-empty-pattern':"off",
  16. 'array-callback-return':'off',
  17. // 禁止混用空格和缩进
  18. 'no-mixed-spaces-and-tabs': 'error',
  19. // 禁止对使用 const 定义的常量重新赋值
  20. 'no-const-assign': 'error',
  21. 'no-undef':'off'
  22. },
  23. parserOptions: {
  24. parser: 'babel-eslint'
  25. }
  26. }