-
-
Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathplugins.js
321 lines (288 loc) · 6.62 KB
/
plugins.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
'use strict';
module.exports = {
// Repeated here from eslint-config-xo in case some plugins set something different
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
ecmaFeatures: {
jsx: true
}
},
// -- End repeat
plugins: [
'no-use-extend-native',
'ava',
'unicorn',
'promise',
'import',
'node',
'eslint-comments'
],
extends: [
'plugin:ava/recommended',
'plugin:unicorn/recommended'
],
settings: {
'import/core-modules': [
'electron',
'atom'
]
},
rules: {
'no-use-extend-native/no-use-extend-native': 'error',
// TODO: Remove this override at some point.
// It's just here to ease users into readable variable names.
'unicorn/prevent-abbreviations': [
'error',
{
checkFilenames: false,
checkDefaultAndNamespaceImports: false,
checkShorthandImports: false,
extendDefaultReplacements: false,
replacements: {
// Not part of `eslint-plugin-unicorn`
application: {
app: true
},
applications: {
apps: true
},
// Part of `eslint-plugin-unicorn`
arr: {
array: true
},
e: {
error: true,
event: true
},
el: {
element: true
},
elem: {
element: true
},
len: {
length: true
},
msg: {
message: true
},
num: {
number: true
},
obj: {
object: true
},
opts: {
options: true
},
param: {
parameter: true
},
params: {
parameters: true
},
prev: {
previous: true
},
req: {
request: true
},
res: {
response: true,
result: true
},
ret: {
returnValue: true
},
str: {
string: true
},
temp: {
temporary: true
},
tmp: {
temporary: true
},
val: {
value: true
}
}
}
],
'unicorn/string-content': [
'error',
{
patterns: {
[/\.\.\./.source]: '…'
}
}
],
// The character class sorting is a bit buggy at the moment.
'unicorn/better-regex': [
'error',
{
sortCharacterClasses: false
}
],
// TODO: Remove this override when the rule is more stable.
'unicorn/consistent-function-scoping': 'off',
// TODO: Temporarily disabled as the rule is buggy.
'function-call-argument-newline': 'off',
'promise/param-names': 'error',
'promise/no-return-wrap': [
'error',
{
allowReject: true
}
],
'promise/no-new-statics': 'error',
'promise/no-return-in-finally': 'error',
'promise/valid-params': 'error',
'promise/prefer-await-to-then': 'error',
'import/default': 'error',
'import/export': 'error',
'import/extensions': [
'error',
{
js: 'never',
jsx: 'never',
json: 'always'
}
],
// Disabled as it causes problems with TypeScript when you use mixed ESM and CommonJS
// TODO: Enable again when I target only ESM
// 'import/first': 'error',
// Disabled as it doesn't work with TypeScript
// This issue and some others: https://github.com/benmosher/eslint-plugin-import/issues/1341
// 'import/named': 'error',
'import/namespace': [
'error',
{
allowComputed: true
}
],
'import/no-absolute-path': 'error',
'import/no-webpack-loader-syntax': 'error',
'import/no-self-import': 'error',
// Enable this sometime in the future when Node.js has ES2015 module support
// 'import/no-cycle': 'error'
'import/no-useless-path-segments': [
'error',
{
noUselessIndex: true
}
],
// Disabled as it doesn't work with TypeScript
// 'import/newline-after-import': 'error',
'import/no-amd': 'error',
'import/no-duplicates': 'error',
// Enable this sometime in the future when Node.js has ES2015 module support
// 'import/unambiguous': 'error',
// Enable this sometime in the future when Node.js has ES2015 module support
// 'import/no-commonjs': 'error',
// Looks useful, but too unstable at the moment
// 'import/no-deprecated': 'error',
'import/no-extraneous-dependencies': 'error',
'import/no-mutable-exports': 'error',
'import/no-named-as-default-member': 'error',
'import/no-named-as-default': 'error',
// Disabled because it's buggy and it also doesn't work with TypeScript
// 'import/no-unresolved': [
// 'error',
// {
// commonjs: true
// }
// ],
// Disabled because of https://github.com/benmosher/eslint-plugin-import/pull/1651 and other issues.
// 'import/order': 'error',
'import/no-unassigned-import': [
'error',
{
allow: [
'@babel/polyfill',
'**/register',
'**/register/**'
]
}
],
// Redundant with import/no-extraneous-dependencies
// 'node/no-extraneous-import': 'error',
// 'node/no-extraneous-require': 'error',
// Redundant with import/no-unresolved
// 'node/no-missing-import': 'error',
// 'node/no-missing-require': 'error',
'node/no-unpublished-bin': 'error',
// Disabled because they're too annoying, see:
// https://github.com/mysticatea/eslint-plugin-node/issues/105
// 'node/no-unpublished-import': [
// 'error',
// {
// allowModules: [
// 'electron',
// 'atom'
// ]
// }
// ],
// 'node/no-unpublished-require': [
// 'error',
// {
// allowModules: [
// 'electron',
// 'atom'
// ]
// }
// ],
'node/process-exit-as-throw': 'error',
// Disabled as the rule doesn't exclude scripts executed with `node` but not referenced in 'bin'. See https://github.com/mysticatea/eslint-plugin-node/issues/96
// 'node/shebang': 'error',
'node/no-deprecated-api': 'error',
// Disabled because it causes too much churn and will be moot when we switch to ES2015 modules
// 'node/exports-style': [
// 'error',
// 'module.exports'
// ]
'node/prefer-global/buffer': [
'error',
'always'
],
'node/prefer-global/console': [
'error',
'always'
],
'node/prefer-global/process': [
'error',
'always'
],
'node/prefer-global/text-decoder': [
'error',
'always'
],
'node/prefer-global/text-encoder': [
'error',
'always'
],
'node/prefer-global/url-search-params': [
'error',
'always'
],
'node/prefer-global/url': [
'error',
'always'
],
'node/prefer-promises/dns': 'error',
'node/prefer-promises/fs': 'error',
'eslint-comments/disable-enable-pair': [
'error',
{
allowWholeFile: true
}
],
'eslint-comments/no-aggregating-enable': 'error',
'eslint-comments/no-duplicate-disable': 'error',
// Disabled as it's already covered by the `unicorn/no-abusive-eslint-disable` rule
// 'eslint-comments/no-unlimited-disable': 'error',
'eslint-comments/no-unused-disable': 'error',
'eslint-comments/no-unused-enable': 'error'
}
};