-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
46 lines (46 loc) · 1.13 KB
/
.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
module.exports = {
root: true,
env: {
browser: true,
es2021: true
},
plugins: ['html'],
extends: [
'plugin:vue/essential', '@vue/standard'
],
parserOptions: {
ecmaVersion: 12
},
rules: {
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// 禁止修改const声明的变量
'no-const-assign': 2,
// 在创建对象字面量时不允许键重复 {a:1,a:1}
'no-dupe-keys': 2,
// 函数参数不能重复
'no-dupe-args': 2,
// 语句强制分号结尾
semi: ['error', 'always'],
// 禁止使用console
'no-console': 'off',
"quotes": [0, "double"], // 使用双引号,关闭
// 在函数定义中,括号之前,要执行一致的间距
// 'space-before-function-parentheses': ['error', 'never'],
'space-before-function-paren': [
'error',
{
anonymous: 'never',
named: 'never',
asyncArrow: 'never'
}
],
'vue/no-use-v-if-with-v-for': [
'error',
{
allowUsingIterationVar: true
}
],
// 大括号{}间空格
'object-curly-spacing': ['error', 'never']
}
};