1234567891011121314151617181920212223242526 |
- module.exports = {
- root: true,
- env: {
- node: true
- },
- 'extends': [
- 'plugin:vue/essential',
- 'eslint:recommended'
- ],
- rules: {
- 'no-console': 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
- "semi": "off",
- 'no-unused-vars':"off",
- 'no-empty-pattern':"off",
- 'array-callback-return':'off',
- // 禁止混用空格和缩进
- 'no-mixed-spaces-and-tabs': 'error',
- // 禁止对使用 const 定义的常量重新赋值
- 'no-const-assign': 'error',
- 'no-undef':'off'
- },
- parserOptions: {
- parser: 'babel-eslint'
- }
- }
|