-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path.eslintrc.js
30 lines (30 loc) · 1004 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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',
}