-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.js
44 lines (44 loc) · 1.17 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
module.exports = {
env: {
es6: true
},
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module'
},
rules: {
'no-cond-assign': 'error',
'no-dupe-args': 'error',
'no-dupe-keys': 'error',
'no-duplicate-case': 'error',
'no-empty': 'error',
'no-extra-boolean-cast': 'error',
'no-func-assign': 'error',
'no-inner-declarations': 'error',
'no-invalid-regexp': 'error',
'no-obj-calls': 'error',
'no-template-curly-in-string': 'error',
'no-unreachable': 'error',
'no-unsafe-negation': 'error',
'valid-typeof': 'error',
'array-callback-return': 'error',
'block-scoped-var': 'error',
'default-case': 'error',
eqeqeq: 'error',
'no-implied-eval': 'error',
'no-invalid-this': 'error',
'no-iterator': 'error',
'no-redeclare': 'error',
'no-return-assign': 'error',
'no-self-assign': 'error',
'no-unmodified-loop-condition': 'error',
'no-unused-expressions': 'error',
'no-unused-labels': 'error',
'no-useless-return': 'error',
'vars-on-top': 'error',
'no-label-var': 'error',
'no-shadow': 'error',
'no-unused-vars': 'warn',
'no-useless-catch': 'error'
}
}