-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc.js
74 lines (74 loc) · 2.78 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
module.exports = {
parserOptions: {
ecmaVersion: 2018
},
rules: {
'no-cond-assign': ['error', 'except-parens'],
'no-constant-condition': ['error', {checkLoops: false}],
'no-dupe-args': 'error',
'no-dupe-keys': 'error',
'no-duplicate-case': 'error',
'no-empty-character-class': 'error',
'no-ex-assign': 'error',
'no-extra-boolean-cast': 'error',
'no-extra-semi': 'error',
'no-func-assign': 'error',
'no-inner-declarations': ['error', 'functions'],
'no-obj-calls': 'error',
'no-sparse-arrays': 'error',
'no-template-curly-in-string': 'error',
'no-unexpected-multiline': 'error',
'no-unreachable': 'error',
'no-unsafe-negation': 'error',
'valid-typeof': 'error',
'curly': ['error', 'all'],
'no-global-assign': 'error',
'no-implicit-coercion': ['error', {string: false}],
'no-invalid-this': 'error',
'no-lone-blocks': 'error',
'no-multi-str': 'error',
'no-redeclare': 'error',
'no-return-assign': 'error',
'no-sequences': 'error',
'no-throw-literal': 'error',
'no-unused-expressions': 'error',
'no-useless-call': 'error',
'no-useless-concat': 'error',
'no-useless-escape': 'error',
'no-useless-return': 'error',
'yoda': ['error', 'never'],
// 'global-require': 'error',
'handle-callback-err': 'error',
'array-bracket-spacing': 'error',
// 'brace-style': ['error', '1tbs'],
'comma-dangle': ['error', 'never'],
'comma-spacing': 'error',
'comma-style': 'error',
'computed-property-spacing': ['error', 'never'],
'eol-last': ['error', 'always'],
'func-call-spacing': ['error', 'never'],
'indent': ['error', 4],
'keyword-spacing': 'error',
'new-parens': 'error',
'no-mixed-spaces-and-tabs': 'error',
'no-trailing-spaces': 'error',
'no-unneeded-ternary': 'error',
'no-whitespace-before-property': 'error',
'object-curly-spacing': ['error', 'never'],
'one-var': ['error', 'never'],
'operator-linebreak': ['error', 'after'],
'padded-blocks': ['error', 'never'],
'semi-spacing': 'error',
'semi': ['error', 'always'],
'space-before-blocks': ['error', 'always'],
'space-before-function-paren': ['error', 'never'],
'space-in-parens': ['error', 'never'],
'space-unary-ops': 'error',
'arrow-body-style': ['error', 'always'],
'arrow-parens': ['error', 'always'],
'arrow-spacing': 'error',
// 'prefer-arrow-callback': 'error',
// 'prefer-template': 'error',
'template-curly-spacing': ['error', 'never']
}
};