.eslintrc.js 762 B

123456789101112131415161718192021222324252627
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: [
  7. 'plugin:vue/essential',
  8. '@vue/standard',
  9. '@vue/typescript/recommended'
  10. ],
  11. parserOptions: {
  12. ecmaVersion: 2020
  13. },
  14. rules: {
  15. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  16. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  17. 'vue/multi-word-component-names': 'off',
  18. '@typescript-eslint/no-var-requires': 0, // require部分没有通过import引入
  19. '@typescript-eslint/no-this-alias': [
  20. 'error',
  21. {
  22. 'allowDestructuring': false, // Disallow `const { props, state } = this`; true by default
  23. 'allowedNames': ['self'] // Allow `const self = this`; `[]` by default
  24. }
  25. ]
  26. }
  27. }