as-editor/.eslintrc.js
2021-08-25 14:39:54 +08:00

31 lines
1004 B
JavaScript

module.exports = {
root: true,
env: {
browser: true,
commonjs: true,
node: true,
es6: true,
},
extends: ['plugin:vue/essential', 'eslint:recommended'],
parserOptions: {
parser: 'babel-eslint',
sourceType: 'module',
},
rules: {
'no-console': 'off',
'no-debugger': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'space-before-function-paren': [0, 'always'], // 函数定义时括号前面要不要有空格
'prefer-const': 'off', // 建议使用const
'brace-style': ['error', '1tbs'], // 大括号风格要求
'@typescript-eslint/no-explicit-any': 'off',
'no-useless-constructor': 'off', // 无用的构造函数
'no-useless-return': 'off',
'no-unreachable': 'off', // 禁止在 return、throw、continue 和 break 语句后出现不可达代码
'no-new-object': 'off', // 禁止使用 Object 构造函数
'no-prototype-builtins': 'off',
'vue/no-mutating-props': 'off'
},
parser: 'vue-eslint-parser',
}