-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc.js
130 lines (129 loc) · 4 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
module.exports = {
parser: 'babel-eslint',
root: true,
env: {
browser: true,
node: true,
mocha: true,
es6: true,
},
plugins: [
'mocha',
'import',
],
ecmaFeatures: {
jsx: true,
},
extends: 'eslint:recommended',
rules: {
'array-bracket-spacing': ['error', 'never'],
'arrow-spacing': 'error',
'block-spacing': ['error', 'always'],
'brace-style': 'error',
'comma-style': ['error', 'last'],
'comma-spacing': ['error', {before: false, after: true}],
'computed-property-spacing': ['error', 'never'],
'consistent-this': ['error', 'self'],
'consistent-return': 'error',
'dot-notation': 'error',
'dot-location': ['error', 'property'],
'eqeqeq': ['error', 'smart'],
'eol-last': 'error',
'indent': ['error', 2, {SwitchCase: 1}],
'jsx-quotes': ['error', 'prefer-double'],
'key-spacing': 'error',
'max-len': ['error', 120, 4],
'new-cap': ['error', {capIsNew: true, newIsCap: true}],
'no-console': 'error',
'no-unused-expressions': 'error',
'no-unused-vars': 'error',
'no-shadow': 'error',
'no-spaced-func': 'error',
'no-multiple-empty-lines': 'error',
'no-multi-spaces': 'error',
'no-undef': 'error',
'no-empty-pattern': 'error',
'no-dupe-keys': 'error',
'no-dupe-args': 'error',
'no-duplicate-case': 'error',
'no-cond-assign': 'error',
'no-extra-semi': 'error',
'no-extra-boolean-cast': 'error',
'no-trailing-spaces': 'error',
'no-unreachable': 'error',
'no-unneeded-ternary': 'error',
'no-useless-computed-key': 'error',
'no-unsafe-finally': 'error',
'no-process-exit': 'error',
'no-async-promise-executor': 'off',
'no-misleading-character-class': 'off',
'no-useless-catch': 'off',
'no-var': 'error',
'one-var': ['error', 'never'],
'padded-blocks': ['error', 'never'],
'prefer-arrow-callback': 'error',
'prefer-const': 'error',
'prefer-template': 'error',
'quotes': ['error', 'double', 'avoid-escape'],
'semi': ['error', 'always'],
'keyword-spacing': 'error',
'space-before-blocks': ['error', 'always'],
'space-before-function-paren': ['error', 'never'],
'space-infix-ops': 'error',
'space-unary-ops': ['error', { words: true, nonwords: false }],
'spaced-comment': 'error',
'yoda': 'error',
'mocha/handle-done-callback': 'error',
'mocha/no-exclusive-tests': 'error',
'mocha/no-global-tests': 'error',
'mocha/no-pending-tests': 'error',
'mocha/no-skipped-tests': 'error',
'mocha/no-sibling-hooks': 'error',
'import/default': 'error',
'import/export': 'error',
'import/extensions': ['error', {
'json': 'always',
'html': 'always',
'server': 'always',
'css': 'always',
'png': 'always',
'jpg': 'always',
'svg': 'always',
}],
'import/imports-first': 'error',
'import/named': 'error',
'import/namespace': 'error',
'import/newline-after-import': 'error',
'import/no-amd': 'error',
'import/no-deprecated': 'error',
'import/no-duplicates': 'error',
'import/no-mutable-exports': 'error',
'import/no-named-as-default': 'error',
'import/no-named-as-default-member': 'error',
'import/no-namespace': 'off',
'import/no-restricted-paths': 'error',
'import/order': 'error',
'import/prefer-default-export': 'error',
'no-case-declarations': 'off',
'strict': 'off',
'no-magic-numbers': 'off',
'camelcase': 'off',
'no-underscore-dangle': 'off',
'handle-callback-err': 'off',
'mocha/no-hooks': 'off',
'mocha/no-mocha-arrows': 'off',
'mocha/no-synchronous-tests': 'off',
'mocha/valid-suite-description': 'off',
'mocha/valid-test-description': 'off',
'import/no-extraneous-dependencies': 'off',
'import/no-nodejs-modules': 'off',
'import/no-unresolved': 'off',
'import/no-commonjs': 'off',
},
settings: {
'import/ignore': [
'node_modules', // Mostly CommonJS (ignored by default).
'\.(json|svg|html)$', // Can't parse.
],
},
};