-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
68 lines (68 loc) · 1.62 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
module.exports = {
root: true,
env: {
node: true,
jest: true,
es6: true
},
rules: {
'no-debugger': 'error',
'no-bitwise': 'error',
'camelcase': ['error', {
properties: 'never'
}],
'curly': ['error', 'all'],
'eqeqeq': ['error', 'always', {
'null': 'ignore'
}],
'guard-for-in': 'error',
'wrap-iife': ['error', 'any'],
'no-use-before-define': 'error',
'new-cap': 'error',
'no-caller': 'error',
'no-empty': ['error', {
allowEmptyCatch: true
}],
'no-plusplus': ['error', {
allowForLoopAfterthoughts: true
}],
'quotes': ['error', 'single'],
'no-undef': 'error',
'no-unused-vars': 'warn',
'strict': 'error',
'semi': 'error',
'space-before-function-paren': ['error', 'never'],
'array-bracket-spacing': ['error', 'never'],
'space-in-parens': ['error', 'never'],
'quote-props': ['error', 'consistent-as-needed'],
'key-spacing': ['error', {
beforeColon: false,
afterColon: true
}],
'space-unary-ops': ['error', {
words: false,
nonwords: false
}],
'no-mixed-spaces-and-tabs': 'error',
'no-trailing-spaces': 'error',
'comma-dangle': ['error', 'never'],
'yoda': ['error', 'never'],
'no-with': 'error',
'no-multiple-empty-lines': 'error',
'space-before-blocks': ['error', 'always'],
'one-var': 'off',
'comma-style': ['error', 'last'],
'space-infix-ops': 'error',
'eol-last': 'error',
'dot-notation': 'error',
'keyword-spacing': ['error', {}],
'consistent-this': ['error', '_this'],
'linebreak-style': ['error', 'unix'],
'indent': ['error', 'tab', {
SwitchCase: 1
}],
'brace-style': ['warn', '1tbs', {
allowSingleLine: true
}]
}
};