-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
166 lines (166 loc) · 5.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
module.exports = {
root: true,
env: {
node: true
},
extends: ['plugin:vue/essential', 'eslint:recommended', '@vue/prettier'],
parserOptions: {
parser: 'babel-eslint'
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// don't require .vue extension when importing
camelcase: [
0,
{
properties: 'always'
}
],
'linebreak-style': [0, 'error', 'windows'],
'comma-dangle': [2, 'never'], // 对象字面量项尾不能有逗号
'comma-spacing': [
2,
{
before: false,
after: true
}
],
'comma-style': [2, 'last'],
'default-case': 2, // switch语句最后必须有default
// 关闭以下两个规则, 允许import时使用@
'import/extensions': 0,
'import/no-unresolved': 0,
indent: [
// 缩进风格,4个空格
2,
4,
{
SwitchCase: 1
}
],
'arrow-parens': 0, // 箭头函数用小括号括起来
'arrow-spacing': [
// =>的前/后括号
2,
{
before: true,
after: true
}
],
quotes: [
// 引号类型,单引号
2,
'single',
{
avoidEscape: true,
allowTemplateLiterals: true
}
],
'eol-last': 2, // 文件以单一的换行符结束
eqeqeq: [
// 必须使用全等
0,
'never',
{
null: 'ignore'
}
],
'generator-star-spacing': [
2,
{
before: true,
after: true
}
],
'handle-callback-err': [2, '^(err|error)$'],
// 'jsx-quotes': [2, 'prefer-single'],
'key-spacing': [
2,
{
beforeColon: false,
afterColon: true
}
],
'keyword-spacing': [
2,
{
before: true,
after: true
}
],
'new-cap': [
// 函数名首行大写必须使用new方式调用,首行小写必须用不带new方式调用
2,
{
newIsCap: true,
capIsNew: false
}
],
semi: [2, 'never'], // 语句强制分号结尾
'semi-spacing': [
// 分号前后空格
2,
{
before: false,
after: true
}
],
'array-callback-return': 0,
'no-alert': 0, // 禁止使用alert confirm prompt
'no-constant-condition': 2, // 禁止在条件中使用常量表达式 if(true) if(1)
'no-dupe-keys': 2, // 在创建对象字面量时不允许键重复 {a:1,a:1}
'no-dupe-args': 2, // 函数参数不能重复
'no-else-return': 2, // 如果if语句里面有return,后面不能跟else语句
'no-trailing-spaces': 2, // 一行结束后面不要有空格
// disallow reassignment of function parameters
// disallow parameter object manipulation except for specific exclusions
'no-param-reassign': [
// 禁止给参数重新赋值
'error',
{
props: true,
ignorePropertyModificationsFor: [
'state', // for vuex state
'acc', // for reduce accumulators
'e' // for e.returnvalue
]
}
],
'no-unused-vars': [
// 不能有声明后未被使用的变量或参数
2,
{
vars: 'all',
args: 'none'
}
],
'no-use-before-define': 2, // 未定义前不能使用
'no-irregular-whitespace': 2, // 不能有不规则的空格
'no-multiple-empty-lines': [2, { max: 1 }], // 空行最多不能超过1行
'operator-linebreak': [0, 'always'], // 换行时运算符在行尾还是行首
'no-plusplus': 0,
// allow optionalDependencies
'import/no-extraneous-dependencies': [0],
// 'max-len': ['error', { code: 300 }],
'object-curly-newline': 0, // 关闭此规则:在对象文字或解构赋值的大括号内强制执行一致的换行符。
'no-nested-ternary': 0, // 关闭此规则:不允许嵌套的三元表达式
'prefer-destructuring': [
'error',
{
VariableDeclarator: {
array: false,
object: true
},
AssignmentExpression: {
array: false,
object: false
}
},
{
enforceForRenamedProperties: false
}
]
}
}