-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
186 lines (171 loc) · 6.16 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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
'use strict';
module.exports = {
root: true,
env: {
es2020: true,
node: true,
jest: true,
},
parserOptions: {
ecmaVersion: 11,
},
plugins: ['@hapi/eslint-plugin-hapi'],
rules: {
// Plugins
'@hapi/hapi/capitalize-modules': ['error', 'global-scope-only'],
'@hapi/hapi/no-var': 'error',
'@hapi/hapi/scope-start': 'error',
'@hapi/hapi/no-arrowception': 'error',
// Possible errors
'for-direction': 'error',
'getter-return': 'error',
'no-async-promise-executor': 'error',
'no-compare-neg-zero': 'error',
'no-cond-assign': 'error',
'no-constant-condition': 'error',
'no-debugger': 'error',
'no-dupe-args': 'error',
'no-dupe-else-if': '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-import-assign': 'error',
'no-invalid-regexp': 'error',
'no-irregular-whitespace': 'error',
'no-misleading-character-class': 'error',
'no-obj-calls': 'error',
'no-prototype-builtins': 'error',
'no-regex-spaces': 'error',
'no-setter-return': 'error',
'no-sparse-arrays': 'error',
'no-unexpected-multiline': 'error',
'no-unreachable': 'error',
'no-unsafe-finally': 'error',
'no-unsafe-negation': 'error',
'require-atomic-updates': 'error',
'use-isnan': 'error',
// Best practices
'curly': 'error',
'dot-location': ['error', 'property'],
'dot-notation': 'error',
'eqeqeq': 'error',
'no-caller': 'error',
'no-case-declarations': 'error',
'no-constructor-return': 'error',
'no-else-return': 'error',
'no-empty-pattern': 'error',
'no-eval': 'error',
'no-extra-bind': 'error',
'no-fallthrough': 'error',
'no-global-assign': 'error',
'no-implicit-coercion': 'error',
'no-implied-eval': 'error',
'no-labels': 'error',
'no-lone-blocks': 'error',
'no-loop-func': 'error',
'no-multi-spaces': ['error', { ignoreEOLComments: true }],
'no-new': 'error',
'no-new-func': 'error',
'no-octal': 'error',
'no-proto': 'error',
'no-return-assign': 'error',
'no-return-await': 'error',
'no-self-assign': 'error',
'no-self-compare': 'error',
'no-sequences': 'error',
'no-throw-literal': 'error',
'no-unused-expressions': 'error',
'no-useless-call': 'error',
'no-useless-catch': 'error',
'no-useless-concat': 'error',
'no-useless-return': 'error',
'no-void': 'error',
'no-with': 'error',
'prefer-regex-literals': 'error',
'radix': 'error',
'require-await': 'error',
// Strict mode
'strict': ['error', 'global'],
// Variables
'no-delete-var': 'error',
'no-shadow': 'error',
'no-shadow-restricted-names': 'error',
'no-undef': 'error',
'no-undef-init': 'error',
'no-unused-vars': 'error',
// Style
'array-bracket-spacing': ['error', 'never'],
'brace-style': ['error', 'stroustrup'],
'comma-dangle': ['error', {
functions: 'always-multiline',
objects: 'always-multiline',
arrays: 'always-multiline',
}],
'comma-spacing': 'error',
'comma-style': 'error',
'computed-property-spacing': 'error',
'eol-last': 'error',
'func-call-spacing': 'error',
'func-style': 'error',
'implicit-arrow-linebreak': 'error',
'indent': ['error', 4, { SwitchCase: 1 }],
'key-spacing': 'error',
'keyword-spacing': 'error',
'linebreak-style': 'error',
'lines-between-class-members': 'error',
'new-parens': 'error',
'no-lonely-if': 'error',
'no-mixed-spaces-and-tabs': 'error',
'no-multiple-empty-lines': 'error',
'no-tabs': 'error',
'no-trailing-spaces': 'error',
'no-unneeded-ternary': 'error',
'no-whitespace-before-property': 'error',
'object-curly-spacing': ['error', 'always'],
'operator-assignment': 'error',
'operator-linebreak': 'error',
'padding-line-between-statements': [
'error',
{ blankLine: 'always', prev: 'directive', next: '*' },
{ blankLine: 'always', prev: 'cjs-import', next: '*' },
{ blankLine: 'any', prev: 'cjs-import', next: 'cjs-import' },
{ blankLine: 'always', prev: 'cjs-export', next: '*' },
{ blankLine: 'always', prev: 'multiline-block-like', next: '*' },
{ blankLine: 'always', prev: 'class', next: '*' },
],
'prefer-exponentiation-operator': 'error',
'prefer-object-spread': 'error',
'quote-props': ['error', 'as-needed'],
'quotes': ['error', 'single', { allowTemplateLiterals: true }],
'semi': 'error',
'space-before-blocks': 'error',
'space-before-function-paren': ['error', { anonymous: 'always', named: 'never' }],
'space-in-parens': 'error',
'space-infix-ops': 'error',
'space-unary-ops': ['warn', { words: true, nonwords: false }],
'spaced-comment': 'error',
'switch-colon-spacing': 'error',
'template-tag-spacing': 'error',
// ES6
'arrow-spacing': 'error',
'arrow-parens': 'error',
'constructor-super': 'error',
'no-class-assign': 'error',
'no-const-assign': 'error',
'no-dupe-class-members': 'error',
'no-new-symbol': 'error',
'no-this-before-super': 'error',
'no-useless-computed-key': 'error',
'no-useless-constructor': 'error',
'no-useless-rename': 'error',
'no-var': 'error',
'prefer-arrow-callback': 'error',
'prefer-const': 'error',
'require-yield': 'error',
'rest-spread-spacing': 'error',
'yield-star-spacing': 'error',
},
};