@nfq/eslint-config 4.0.0-beta.16 → 4.0.0-beta.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/rules/common/eslint/index.js +378 -0
- package/dist/rules/common/eslint/index.js.map +1 -0
- package/dist/rules/common/plugins/index.js +602 -0
- package/dist/rules/common/plugins/index.js.map +1 -0
- package/dist/rules/cypress/overrides/index.js +18 -0
- package/dist/rules/cypress/overrides/index.js.map +1 -0
- package/dist/rules/cypress/plugins/index.js +31 -0
- package/dist/rules/cypress/plugins/index.js.map +1 -0
- package/dist/rules/node/plugins/index.js +48 -0
- package/dist/rules/node/plugins/index.js.map +1 -0
- package/dist/rules/react/plugins/index.js +351 -0
- package/dist/rules/react/plugins/index.js.map +1 -0
- package/dist/rules/storybook/overrides/index.js +16 -0
- package/dist/rules/storybook/overrides/index.js.map +1 -0
- package/dist/rules/typescript/overrides/index.js +59 -0
- package/dist/rules/typescript/overrides/index.js.map +1 -0
- package/dist/rules/typescript/plugins/index.js +164 -0
- package/dist/rules/typescript/plugins/index.js.map +1 -0
- package/package.json +14 -1
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var confusingBrowserGlobals = require('confusing-browser-globals');
|
|
4
|
+
|
|
5
|
+
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
6
|
+
|
|
7
|
+
var confusingBrowserGlobals__default = /*#__PURE__*/_interopDefault(confusingBrowserGlobals);
|
|
8
|
+
|
|
9
|
+
const codeQuality = {
|
|
10
|
+
'accessor-pairs': ['error', {
|
|
11
|
+
getWithoutSet: false,
|
|
12
|
+
setWithoutGet: true
|
|
13
|
+
}],
|
|
14
|
+
'array-callback-return': ['error', {
|
|
15
|
+
allowImplicit: true
|
|
16
|
+
}],
|
|
17
|
+
'block-scoped-var': 'error',
|
|
18
|
+
camelcase: ['error', {
|
|
19
|
+
ignoreDestructuring: false,
|
|
20
|
+
properties: 'always'
|
|
21
|
+
}],
|
|
22
|
+
'consistent-return': 'error',
|
|
23
|
+
'consistent-this': ['error', 'self'],
|
|
24
|
+
curly: ['error', 'multi-line', 'consistent'],
|
|
25
|
+
'default-case': ['warn', {
|
|
26
|
+
commentPattern: '^no default$'
|
|
27
|
+
}],
|
|
28
|
+
'default-param-last': 'error',
|
|
29
|
+
'dot-notation': ['error', {
|
|
30
|
+
allowKeywords: true
|
|
31
|
+
}],
|
|
32
|
+
'func-name-matching': ['off', 'always', {
|
|
33
|
+
considerPropertyDescriptor: true,
|
|
34
|
+
includeCommonJSModuleExports: false
|
|
35
|
+
}],
|
|
36
|
+
'func-names': ['warn', 'as-needed'],
|
|
37
|
+
'func-style': ['off', 'expression'],
|
|
38
|
+
'guard-for-in': 'warn',
|
|
39
|
+
'id-denylist': 'off',
|
|
40
|
+
'id-length': 'off',
|
|
41
|
+
'id-match': 'off',
|
|
42
|
+
'max-depth': ['error', {
|
|
43
|
+
max: 5
|
|
44
|
+
}],
|
|
45
|
+
'max-lines': ['error', {
|
|
46
|
+
max: 500,
|
|
47
|
+
skipBlankLines: true,
|
|
48
|
+
skipComments: true
|
|
49
|
+
}],
|
|
50
|
+
'max-lines-per-function': ['warn', {
|
|
51
|
+
IIFEs: true,
|
|
52
|
+
max: 200,
|
|
53
|
+
skipBlankLines: true,
|
|
54
|
+
skipComments: true
|
|
55
|
+
}],
|
|
56
|
+
'max-nested-callbacks': 'off',
|
|
57
|
+
'max-statements': ['off', {
|
|
58
|
+
max: 10
|
|
59
|
+
}],
|
|
60
|
+
'multiline-comment-style': ['off', 'starred-block'],
|
|
61
|
+
'new-cap': ['error', {
|
|
62
|
+
capIsNew: false,
|
|
63
|
+
capIsNewExceptions: ['Immutable.Map', 'Immutable.Set', 'Immutable.List'],
|
|
64
|
+
newIsCap: true,
|
|
65
|
+
newIsCapExceptions: []
|
|
66
|
+
}],
|
|
67
|
+
'no-alert': 'error',
|
|
68
|
+
'no-array-constructor': 'error',
|
|
69
|
+
'no-bitwise': 'error',
|
|
70
|
+
'no-caller': 'error',
|
|
71
|
+
'no-case-declarations': 'error',
|
|
72
|
+
'no-console': 'warn',
|
|
73
|
+
'no-constructor-return': 'off',
|
|
74
|
+
'no-continue': 'off',
|
|
75
|
+
'no-div-regex': 'error',
|
|
76
|
+
'no-else-return': ['error', {
|
|
77
|
+
allowElseIf: true
|
|
78
|
+
}],
|
|
79
|
+
'no-empty-function': ['error', {
|
|
80
|
+
allow: ['arrowFunctions', 'methods', 'asyncMethods']
|
|
81
|
+
}],
|
|
82
|
+
'no-empty-pattern': 'error',
|
|
83
|
+
'no-eq-null': 'error',
|
|
84
|
+
'no-extend-native': 'error',
|
|
85
|
+
'no-extra-bind': 'error',
|
|
86
|
+
'no-extra-label': 'error',
|
|
87
|
+
'no-fallthrough': 'error',
|
|
88
|
+
'no-implicit-coercion': 'error',
|
|
89
|
+
'no-implicit-globals': 'error',
|
|
90
|
+
'no-inline-comments': ['error', {
|
|
91
|
+
ignorePattern: '(@type|css) .+'
|
|
92
|
+
}],
|
|
93
|
+
'no-invalid-this': 'error',
|
|
94
|
+
'no-iterator': 'error',
|
|
95
|
+
'no-labels': 'error',
|
|
96
|
+
'no-lone-blocks': 'error',
|
|
97
|
+
'no-lonely-if': 'error',
|
|
98
|
+
'no-loop-func': 'error',
|
|
99
|
+
'no-multi-assign': 'error',
|
|
100
|
+
'no-multi-str': 'error',
|
|
101
|
+
'no-negated-condition': 'error',
|
|
102
|
+
'no-nested-ternary': 'error',
|
|
103
|
+
'no-new': 'error',
|
|
104
|
+
'no-new-func': 'error',
|
|
105
|
+
'no-new-object': 'error',
|
|
106
|
+
'no-new-wrappers': 'error',
|
|
107
|
+
'no-octal': 'error',
|
|
108
|
+
'no-octal-escape': 'error',
|
|
109
|
+
'no-plusplus': 'off',
|
|
110
|
+
'no-proto': 'error',
|
|
111
|
+
'no-restricted-properties': ['error', {
|
|
112
|
+
message: 'arguments.callee is deprecated',
|
|
113
|
+
object: 'arguments',
|
|
114
|
+
property: 'callee'
|
|
115
|
+
}, {
|
|
116
|
+
message: 'Please use Number.isFinite instead',
|
|
117
|
+
object: 'global',
|
|
118
|
+
property: 'isFinite'
|
|
119
|
+
}, {
|
|
120
|
+
message: 'Please use Number.isFinite instead',
|
|
121
|
+
object: 'self',
|
|
122
|
+
property: 'isFinite'
|
|
123
|
+
}, {
|
|
124
|
+
message: 'Please use Number.isFinite instead',
|
|
125
|
+
object: 'window',
|
|
126
|
+
property: 'isFinite'
|
|
127
|
+
}, {
|
|
128
|
+
message: 'Please use Number.isNaN instead',
|
|
129
|
+
object: 'global',
|
|
130
|
+
property: 'isNaN'
|
|
131
|
+
}, {
|
|
132
|
+
message: 'Please use Number.isNaN instead',
|
|
133
|
+
object: 'self',
|
|
134
|
+
property: 'isNaN'
|
|
135
|
+
}, {
|
|
136
|
+
message: 'Please use Number.isNaN instead',
|
|
137
|
+
object: 'window',
|
|
138
|
+
property: 'isNaN'
|
|
139
|
+
}, {
|
|
140
|
+
message: 'Please use Object.defineProperty instead.',
|
|
141
|
+
property: '__defineGetter__'
|
|
142
|
+
}, {
|
|
143
|
+
message: 'Please use Object.defineProperty instead.',
|
|
144
|
+
property: '__defineSetter__'
|
|
145
|
+
}, {
|
|
146
|
+
message: 'Use the exponentiation operator (**) instead.',
|
|
147
|
+
object: 'Math',
|
|
148
|
+
property: 'pow'
|
|
149
|
+
}],
|
|
150
|
+
'no-restricted-syntax': ['error', {
|
|
151
|
+
message: 'Labels are a form of GOTO; using them makes code confusing and hard to maintain' + ' and understand.',
|
|
152
|
+
selector: 'LabeledStatement'
|
|
153
|
+
}, {
|
|
154
|
+
message: '`with` is disallowed in strict mode because it makes code' + ' impossible to predict and optimize.',
|
|
155
|
+
selector: 'WithStatement'
|
|
156
|
+
}],
|
|
157
|
+
'no-return-assign': ['error', 'except-parens'],
|
|
158
|
+
'no-return-await': 'error',
|
|
159
|
+
'no-script-url': 'error',
|
|
160
|
+
'no-sequences': 'error',
|
|
161
|
+
'no-ternary': 'off',
|
|
162
|
+
'no-unneeded-ternary': ['error', {
|
|
163
|
+
defaultAssignment: false
|
|
164
|
+
}],
|
|
165
|
+
'no-unused-expressions': ['error', {
|
|
166
|
+
allowShortCircuit: true,
|
|
167
|
+
allowTaggedTemplates: false,
|
|
168
|
+
allowTernary: true
|
|
169
|
+
}],
|
|
170
|
+
'no-unused-labels': 'error',
|
|
171
|
+
'no-useless-call': 'error',
|
|
172
|
+
'no-useless-concat': 'error',
|
|
173
|
+
'no-useless-escape': 'error',
|
|
174
|
+
'no-useless-return': 'error',
|
|
175
|
+
'no-void': ['error', {
|
|
176
|
+
allowAsStatement: true
|
|
177
|
+
}],
|
|
178
|
+
'no-warning-comments': ['off', {
|
|
179
|
+
location: 'start',
|
|
180
|
+
terms: ['todo', 'fixme', 'xxx']
|
|
181
|
+
}],
|
|
182
|
+
'no-with': 'error',
|
|
183
|
+
'one-var': ['off', 'never'],
|
|
184
|
+
'operator-assignment': ['error', 'always'],
|
|
185
|
+
'prefer-exponentiation-operator': 'error',
|
|
186
|
+
'prefer-named-capture-group': 'off',
|
|
187
|
+
'prefer-object-spread': 'error',
|
|
188
|
+
'prefer-promise-reject-errors': ['error', {
|
|
189
|
+
allowEmptyReject: true
|
|
190
|
+
}],
|
|
191
|
+
'prefer-regex-literals': 'error',
|
|
192
|
+
'require-await': 'off',
|
|
193
|
+
'require-unicode-regexp': 'error',
|
|
194
|
+
'sort-destructure-keys/sort-destructure-keys': ['error', {
|
|
195
|
+
caseSensitive: false
|
|
196
|
+
}],
|
|
197
|
+
'sort-vars': 'error',
|
|
198
|
+
'unicode-bom': ['error', 'never'],
|
|
199
|
+
yoda: 'error'
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
const complexity = {
|
|
203
|
+
'class-methods-use-this': ['off', {
|
|
204
|
+
exceptMethods: []
|
|
205
|
+
}],
|
|
206
|
+
complexity: ['warn', {
|
|
207
|
+
max: 20
|
|
208
|
+
}],
|
|
209
|
+
'max-classes-per-file': ['error', 1],
|
|
210
|
+
'no-param-reassign': ['error', {
|
|
211
|
+
ignorePropertyModificationsFor: ['$scope', 'acc', 'accumulator', 'ctx', 'descriptor', 'e', 'item', 'key', 'req', 'request', 'res', 'response', 'staticContext', 'value'],
|
|
212
|
+
props: true
|
|
213
|
+
}],
|
|
214
|
+
'vars-on-top': 'error'
|
|
215
|
+
};
|
|
216
|
+
|
|
217
|
+
const errorPrevention = {
|
|
218
|
+
eqeqeq: ['error', 'always'],
|
|
219
|
+
'for-direction': 'error',
|
|
220
|
+
'getter-return': ['error', {
|
|
221
|
+
allowImplicit: false
|
|
222
|
+
}],
|
|
223
|
+
'no-async-promise-executor': 'error',
|
|
224
|
+
'no-await-in-loop': 'warn',
|
|
225
|
+
'no-compare-neg-zero': 'error',
|
|
226
|
+
'no-cond-assign': 'error',
|
|
227
|
+
'no-constant-condition': ['warn', {
|
|
228
|
+
checkLoops: false
|
|
229
|
+
}],
|
|
230
|
+
'no-control-regex': 'error',
|
|
231
|
+
'no-debugger': 'error',
|
|
232
|
+
'no-dupe-args': 'error',
|
|
233
|
+
'no-dupe-else-if': 'error',
|
|
234
|
+
'no-dupe-keys': 'error',
|
|
235
|
+
'no-duplicate-case': 'error',
|
|
236
|
+
'no-empty-character-class': 'error',
|
|
237
|
+
'no-eval': 'error',
|
|
238
|
+
'no-ex-assign': 'error',
|
|
239
|
+
'no-extra-boolean-cast': 'error',
|
|
240
|
+
'no-func-assign': 'error',
|
|
241
|
+
'no-global-assign': 'error',
|
|
242
|
+
'no-implied-eval': 'error',
|
|
243
|
+
'no-import-assign': 'error',
|
|
244
|
+
'no-inner-declarations': 'error',
|
|
245
|
+
'no-invalid-regexp': 'error',
|
|
246
|
+
'no-irregular-whitespace': 'error',
|
|
247
|
+
'no-misleading-character-class': 'error',
|
|
248
|
+
'no-obj-calls': 'error',
|
|
249
|
+
'no-prototype-builtins': 'error',
|
|
250
|
+
'no-redeclare': 'error',
|
|
251
|
+
'no-regex-spaces': 'error',
|
|
252
|
+
'no-self-assign': ['error', {
|
|
253
|
+
props: true
|
|
254
|
+
}],
|
|
255
|
+
'no-self-compare': 'error',
|
|
256
|
+
'no-setter-return': 'error',
|
|
257
|
+
'no-sparse-arrays': 'error',
|
|
258
|
+
'no-template-curly-in-string': 'error',
|
|
259
|
+
'no-throw-literal': 'error',
|
|
260
|
+
'no-unexpected-multiline': 'error',
|
|
261
|
+
'no-unmodified-loop-condition': 'error',
|
|
262
|
+
'no-unreachable': 'error',
|
|
263
|
+
'no-unsafe-finally': 'error',
|
|
264
|
+
'no-unsafe-negation': 'error',
|
|
265
|
+
'no-useless-catch': 'error',
|
|
266
|
+
radix: ['error', 'always'],
|
|
267
|
+
'require-atomic-updates': 'off',
|
|
268
|
+
'use-isnan': 'error',
|
|
269
|
+
'valid-typeof': ['error', {
|
|
270
|
+
requireStringLiterals: true
|
|
271
|
+
}]
|
|
272
|
+
};
|
|
273
|
+
|
|
274
|
+
const modernJavaScript = {
|
|
275
|
+
'arrow-body-style': ['error', 'as-needed', {
|
|
276
|
+
requireReturnForObjectLiteral: false
|
|
277
|
+
}],
|
|
278
|
+
'constructor-super': 'error',
|
|
279
|
+
'no-class-assign': 'error',
|
|
280
|
+
'no-const-assign': 'error',
|
|
281
|
+
'no-dupe-class-members': 'error',
|
|
282
|
+
'no-new-symbol': 'error',
|
|
283
|
+
'no-restricted-imports': ['off', {
|
|
284
|
+
paths: [],
|
|
285
|
+
patterns: []
|
|
286
|
+
}],
|
|
287
|
+
'no-this-before-super': 'error',
|
|
288
|
+
'no-useless-computed-key': 'error',
|
|
289
|
+
'no-useless-constructor': 'error',
|
|
290
|
+
'no-useless-rename': ['error', {
|
|
291
|
+
ignoreDestructuring: false,
|
|
292
|
+
ignoreExport: false,
|
|
293
|
+
ignoreImport: false
|
|
294
|
+
}],
|
|
295
|
+
'no-var': 'error',
|
|
296
|
+
'object-shorthand': ['error', 'always', {
|
|
297
|
+
avoidExplicitReturnArrows: true,
|
|
298
|
+
avoidQuotes: true,
|
|
299
|
+
ignoreConstructors: false
|
|
300
|
+
}],
|
|
301
|
+
'prefer-arrow-callback': ['error', {
|
|
302
|
+
allowNamedFunctions: false,
|
|
303
|
+
allowUnboundThis: true
|
|
304
|
+
}],
|
|
305
|
+
'prefer-const': ['error', {
|
|
306
|
+
destructuring: 'any',
|
|
307
|
+
ignoreReadBeforeAssign: true
|
|
308
|
+
}],
|
|
309
|
+
'prefer-destructuring': ['error', {
|
|
310
|
+
AssignmentExpression: {
|
|
311
|
+
array: true,
|
|
312
|
+
object: false
|
|
313
|
+
},
|
|
314
|
+
VariableDeclarator: {
|
|
315
|
+
array: false,
|
|
316
|
+
object: true
|
|
317
|
+
}
|
|
318
|
+
}, {
|
|
319
|
+
enforceForRenamedProperties: false
|
|
320
|
+
}],
|
|
321
|
+
'prefer-numeric-literals': 'error',
|
|
322
|
+
'prefer-rest-params': 'error',
|
|
323
|
+
'prefer-spread': 'error',
|
|
324
|
+
'prefer-template': 'error',
|
|
325
|
+
'require-yield': 'error',
|
|
326
|
+
'sort-imports': ['error', {
|
|
327
|
+
ignoreCase: true,
|
|
328
|
+
ignoreDeclarationSort: true,
|
|
329
|
+
ignoreMemberSort: false
|
|
330
|
+
}],
|
|
331
|
+
'symbol-description': 'error'
|
|
332
|
+
};
|
|
333
|
+
|
|
334
|
+
const strictMode = {
|
|
335
|
+
strict: ['error', 'never']
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
const variables = {
|
|
339
|
+
'init-declarations': 'off',
|
|
340
|
+
'no-delete-var': 'error',
|
|
341
|
+
'no-label-var': 'error',
|
|
342
|
+
'no-restricted-globals': ['error', 'isFinite', 'isNaN'].concat(confusingBrowserGlobals__default.default),
|
|
343
|
+
'no-shadow': 'error',
|
|
344
|
+
'no-shadow-restricted-names': 'error',
|
|
345
|
+
'no-undef': 'error',
|
|
346
|
+
'no-undef-init': 'error',
|
|
347
|
+
'no-undefined': 'error',
|
|
348
|
+
'no-unused-vars': ['error', {
|
|
349
|
+
args: 'after-used',
|
|
350
|
+
argsIgnorePattern: '^e$',
|
|
351
|
+
caughtErrors: 'none',
|
|
352
|
+
ignoreRestSiblings: true,
|
|
353
|
+
vars: 'all'
|
|
354
|
+
}],
|
|
355
|
+
'no-use-before-define': ['error', {
|
|
356
|
+
classes: false,
|
|
357
|
+
functions: false,
|
|
358
|
+
variables: false
|
|
359
|
+
}]
|
|
360
|
+
};
|
|
361
|
+
|
|
362
|
+
const commonEslintRules = {
|
|
363
|
+
...errorPrevention,
|
|
364
|
+
...codeQuality,
|
|
365
|
+
...modernJavaScript,
|
|
366
|
+
...complexity,
|
|
367
|
+
...variables,
|
|
368
|
+
...strictMode
|
|
369
|
+
};
|
|
370
|
+
|
|
371
|
+
exports.codeQuality = codeQuality;
|
|
372
|
+
exports.commonEslintRules = commonEslintRules;
|
|
373
|
+
exports.complexity = complexity;
|
|
374
|
+
exports.errorPrevention = errorPrevention;
|
|
375
|
+
exports.modernJavaScript = modernJavaScript;
|
|
376
|
+
exports.strictMode = strictMode;
|
|
377
|
+
exports.variables = variables;
|
|
378
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../src/rules/common/eslint/code-quality.ts","../../../../src/rules/common/eslint/complexity.ts","../../../../src/rules/common/eslint/error-prevention.ts","../../../../src/rules/common/eslint/modern-javascript.ts","../../../../src/rules/common/eslint/strict-mode.ts","../../../../src/rules/common/eslint/variables.ts","../../../../src/rules/common/eslint/index.ts"],"sourcesContent":["export const codeQuality = {\n 'accessor-pairs': [\n 'error',\n {\n getWithoutSet: false,\n setWithoutGet: true\n }\n ],\n 'array-callback-return': ['error', {allowImplicit: true}],\n 'block-scoped-var': 'error',\n camelcase: [\n 'error',\n {\n ignoreDestructuring: false,\n properties: 'always'\n }\n ],\n 'consistent-return': 'error',\n 'consistent-this': ['error', 'self'],\n curly: ['error', 'multi-line', 'consistent'],\n 'default-case': ['warn', {commentPattern: '^no default$'}],\n 'default-param-last': 'error',\n 'dot-notation': ['error', {allowKeywords: true}],\n 'func-name-matching': [\n 'off',\n 'always',\n {\n considerPropertyDescriptor: true,\n includeCommonJSModuleExports: false\n }\n ],\n 'func-names': ['warn', 'as-needed'],\n 'func-style': ['off', 'expression'],\n 'guard-for-in': 'warn',\n 'id-denylist': 'off',\n 'id-length': 'off',\n 'id-match': 'off',\n 'max-depth': ['error', {max: 5}],\n 'max-lines': [\n 'error',\n {\n max: 500,\n skipBlankLines: true,\n skipComments: true\n }\n ],\n 'max-lines-per-function': [\n 'warn',\n {\n IIFEs: true,\n max: 200,\n skipBlankLines: true,\n skipComments: true\n }\n ],\n 'max-nested-callbacks': 'off',\n 'max-statements': ['off', {max: 10}],\n 'multiline-comment-style': ['off', 'starred-block'],\n 'new-cap': [\n 'error',\n {\n capIsNew: false,\n capIsNewExceptions: ['Immutable.Map', 'Immutable.Set', 'Immutable.List'],\n newIsCap: true,\n newIsCapExceptions: []\n }\n ],\n 'no-alert': 'error',\n 'no-array-constructor': 'error',\n 'no-bitwise': 'error',\n 'no-caller': 'error',\n 'no-case-declarations': 'error',\n 'no-console': 'warn',\n 'no-constructor-return': 'off',\n 'no-continue': 'off',\n 'no-div-regex': 'error',\n 'no-else-return': ['error', {allowElseIf: true}],\n 'no-empty-function': ['error', {allow: ['arrowFunctions', 'methods', 'asyncMethods']}],\n 'no-empty-pattern': 'error',\n 'no-eq-null': 'error',\n 'no-extend-native': 'error',\n 'no-extra-bind': 'error',\n 'no-extra-label': 'error',\n 'no-fallthrough': 'error',\n 'no-implicit-coercion': 'error',\n 'no-implicit-globals': 'error',\n 'no-inline-comments': [\n 'error',\n {ignorePattern: '(@type|css) .+'}\n ],\n 'no-invalid-this': 'error',\n 'no-iterator': 'error',\n 'no-labels': 'error',\n 'no-lone-blocks': 'error',\n 'no-lonely-if': 'error',\n 'no-loop-func': 'error',\n 'no-multi-assign': 'error',\n 'no-multi-str': 'error',\n 'no-negated-condition': 'error',\n 'no-nested-ternary': 'error',\n 'no-new': 'error',\n 'no-new-func': 'error',\n 'no-new-object': 'error',\n 'no-new-wrappers': 'error',\n 'no-octal': 'error',\n 'no-octal-escape': 'error',\n 'no-plusplus': 'off',\n 'no-proto': 'error',\n 'no-restricted-properties': [\n 'error',\n {\n message: 'arguments.callee is deprecated',\n object: 'arguments',\n property: 'callee'\n },\n {\n message: 'Please use Number.isFinite instead',\n object: 'global',\n property: 'isFinite'\n },\n {\n message: 'Please use Number.isFinite instead',\n object: 'self',\n property: 'isFinite'\n },\n {\n message: 'Please use Number.isFinite instead',\n object: 'window',\n property: 'isFinite'\n },\n {\n message: 'Please use Number.isNaN instead',\n object: 'global',\n property: 'isNaN'\n },\n {\n message: 'Please use Number.isNaN instead',\n object: 'self',\n property: 'isNaN'\n },\n {\n message: 'Please use Number.isNaN instead',\n object: 'window',\n property: 'isNaN'\n },\n {\n message: 'Please use Object.defineProperty instead.',\n property: '__defineGetter__'\n },\n {\n message: 'Please use Object.defineProperty instead.',\n property: '__defineSetter__'\n },\n {\n message: 'Use the exponentiation operator (**) instead.',\n object: 'Math',\n property: 'pow'\n }\n ],\n 'no-restricted-syntax': [\n 'error',\n {\n message: 'Labels are a form of GOTO; using them makes code confusing and hard to maintain'\n + ' and understand.',\n selector: 'LabeledStatement'\n },\n {\n message: '`with` is disallowed in strict mode because it makes code'\n + ' impossible to predict and optimize.',\n selector: 'WithStatement'\n }\n ],\n 'no-return-assign': ['error', 'except-parens'],\n 'no-return-await': 'error',\n 'no-script-url': 'error',\n 'no-sequences': 'error',\n 'no-ternary': 'off',\n 'no-unneeded-ternary': [\n 'error',\n {defaultAssignment: false}\n ],\n 'no-unused-expressions': [\n 'error',\n {\n allowShortCircuit: true,\n allowTaggedTemplates: false,\n allowTernary: true\n }\n ],\n 'no-unused-labels': 'error',\n 'no-useless-call': 'error',\n 'no-useless-concat': 'error',\n 'no-useless-escape': 'error',\n 'no-useless-return': 'error',\n 'no-void': ['error', {allowAsStatement: true}],\n 'no-warning-comments': [\n 'off',\n {\n location: 'start',\n terms: [\n 'todo',\n 'fixme',\n 'xxx'\n ]\n }\n ],\n 'no-with': 'error',\n 'one-var': ['off', 'never'],\n 'operator-assignment': ['error', 'always'],\n 'prefer-exponentiation-operator': 'error',\n 'prefer-named-capture-group': 'off',\n 'prefer-object-spread': 'error',\n 'prefer-promise-reject-errors': ['error', {allowEmptyReject: true}],\n 'prefer-regex-literals': 'error',\n 'require-await': 'off',\n 'require-unicode-regexp': 'error',\n 'sort-destructure-keys/sort-destructure-keys': ['error', {caseSensitive: false}],\n 'sort-vars': 'error',\n 'unicode-bom': ['error', 'never'],\n yoda: 'error'\n};","/* eslint-disable no-inline-comments */\nexport const complexity = {\n 'class-methods-use-this': ['off', {exceptMethods: []}],\n complexity: ['warn', {max: 20}],\n 'max-classes-per-file': ['error', 1],\n 'no-param-reassign': [\n 'error',\n {\n ignorePropertyModificationsFor: [\n '$scope', // for Angular 1 scopes\n 'acc', // for reduce accumulators\n 'accumulator', // for reduce accumulators\n 'ctx', // for Koa routing\n 'descriptor', // for decorators\n 'e', // for e.returnvalue\n 'item', // array foreach\n 'key', // for reduce key value pairs\n 'req', // for Express requests\n 'request', // for Express requests\n 'res', // for Express responses\n 'response', // for Express responses\n 'staticContext', // for ReactRouter context\n 'value' // for reduce key value pairs\n ],\n props: true\n }\n ],\n 'vars-on-top': 'error'\n};","export const errorPrevention = {\n eqeqeq: ['error', 'always'],\n 'for-direction': 'error',\n 'getter-return': ['error', {allowImplicit: false}],\n 'no-async-promise-executor': 'error',\n 'no-await-in-loop': 'warn',\n 'no-compare-neg-zero': 'error',\n 'no-cond-assign': 'error',\n 'no-constant-condition': ['warn', {checkLoops: false}],\n 'no-control-regex': 'error',\n 'no-debugger': 'error',\n 'no-dupe-args': 'error',\n 'no-dupe-else-if': 'error',\n 'no-dupe-keys': 'error',\n 'no-duplicate-case': 'error',\n 'no-empty-character-class': 'error',\n 'no-eval': 'error',\n 'no-ex-assign': 'error',\n 'no-extra-boolean-cast': 'error',\n 'no-func-assign': 'error',\n 'no-global-assign': 'error',\n 'no-implied-eval': 'error',\n 'no-import-assign': 'error',\n 'no-inner-declarations': 'error',\n 'no-invalid-regexp': 'error',\n 'no-irregular-whitespace': 'error',\n 'no-misleading-character-class': 'error',\n 'no-obj-calls': 'error',\n 'no-prototype-builtins': 'error',\n 'no-redeclare': 'error',\n 'no-regex-spaces': 'error',\n 'no-self-assign': ['error', {props: true}],\n 'no-self-compare': 'error',\n 'no-setter-return': 'error',\n 'no-sparse-arrays': 'error',\n 'no-template-curly-in-string': 'error',\n 'no-throw-literal': 'error',\n 'no-unexpected-multiline': 'error',\n 'no-unmodified-loop-condition': 'error',\n 'no-unreachable': 'error',\n 'no-unsafe-finally': 'error',\n 'no-unsafe-negation': 'error',\n 'no-useless-catch': 'error',\n radix: ['error', 'always'],\n 'require-atomic-updates': 'off',\n 'use-isnan': 'error',\n 'valid-typeof': ['error', {requireStringLiterals: true}]\n};","export const modernJavaScript = {\n 'arrow-body-style': ['error', 'as-needed', {requireReturnForObjectLiteral: false}],\n 'constructor-super': 'error',\n 'no-class-assign': 'error',\n 'no-const-assign': 'error',\n 'no-dupe-class-members': 'error',\n 'no-new-symbol': 'error',\n 'no-restricted-imports': [\n 'off',\n {\n paths: [],\n patterns: []\n }\n ],\n 'no-this-before-super': 'error',\n 'no-useless-computed-key': 'error',\n 'no-useless-constructor': 'error',\n 'no-useless-rename': [\n 'error',\n {\n ignoreDestructuring: false,\n ignoreExport: false,\n ignoreImport: false\n }\n ],\n 'no-var': 'error',\n 'object-shorthand': [\n 'error',\n 'always',\n {\n avoidExplicitReturnArrows: true,\n avoidQuotes: true,\n ignoreConstructors: false\n }\n ],\n 'prefer-arrow-callback': [\n 'error',\n {\n allowNamedFunctions: false,\n allowUnboundThis: true\n }\n ],\n 'prefer-const': [\n 'error',\n {\n destructuring: 'any',\n ignoreReadBeforeAssign: true\n }\n ],\n 'prefer-destructuring': [\n 'error',\n {\n AssignmentExpression: {\n array: true,\n object: false\n },\n VariableDeclarator: {\n array: false,\n object: true\n }\n },\n {enforceForRenamedProperties: false}\n ],\n 'prefer-numeric-literals': 'error',\n 'prefer-rest-params': 'error',\n 'prefer-spread': 'error',\n 'prefer-template': 'error',\n 'require-yield': 'error',\n 'sort-imports': [\n 'error',\n {\n ignoreCase: true,\n ignoreDeclarationSort: true,\n ignoreMemberSort: false\n }\n ],\n 'symbol-description': 'error'\n};","export const strictMode = {\n strict: [\n 'error',\n 'never'\n ]\n};","// @ts-expect-error\nimport confusingBrowserGlobals from 'confusing-browser-globals';\n\nexport const variables = {\n 'init-declarations': 'off',\n 'no-delete-var': 'error',\n 'no-label-var': 'error',\n 'no-restricted-globals': ['error', 'isFinite', 'isNaN'].concat(confusingBrowserGlobals as ConcatArray<string>),\n 'no-shadow': 'error',\n 'no-shadow-restricted-names': 'error',\n 'no-undef': 'error',\n 'no-undef-init': 'error',\n 'no-undefined': 'error',\n 'no-unused-vars': [\n 'error',\n {\n args: 'after-used',\n argsIgnorePattern: '^e$',\n caughtErrors: 'none',\n ignoreRestSiblings: true,\n vars: 'all'\n }\n ],\n 'no-use-before-define': [\n 'error',\n {\n classes: false,\n functions: false,\n variables: false\n }\n ]\n};","import {codeQuality} from './code-quality';\nimport {complexity} from './complexity';\nimport {errorPrevention} from './error-prevention';\nimport {modernJavaScript} from './modern-javascript';\nimport {strictMode} from './strict-mode';\nimport {variables} from './variables';\n\nexport const commonEslintRules = {\n ...errorPrevention,\n ...codeQuality,\n ...modernJavaScript,\n ...complexity,\n ...variables,\n ...strictMode\n};\n\nexport {\n codeQuality,\n complexity,\n errorPrevention,\n modernJavaScript,\n strictMode,\n variables\n};"],"names":["codeQuality","getWithoutSet","setWithoutGet","allowImplicit","camelcase","ignoreDestructuring","properties","curly","commentPattern","allowKeywords","considerPropertyDescriptor","includeCommonJSModuleExports","max","skipBlankLines","skipComments","IIFEs","capIsNew","capIsNewExceptions","newIsCap","newIsCapExceptions","allowElseIf","allow","ignorePattern","message","object","property","selector","defaultAssignment","allowShortCircuit","allowTaggedTemplates","allowTernary","allowAsStatement","location","terms","allowEmptyReject","caseSensitive","yoda","complexity","exceptMethods","ignorePropertyModificationsFor","props","errorPrevention","eqeqeq","checkLoops","radix","requireStringLiterals","modernJavaScript","requireReturnForObjectLiteral","paths","patterns","ignoreExport","ignoreImport","avoidExplicitReturnArrows","avoidQuotes","ignoreConstructors","allowNamedFunctions","allowUnboundThis","destructuring","ignoreReadBeforeAssign","AssignmentExpression","array","VariableDeclarator","enforceForRenamedProperties","ignoreCase","ignoreDeclarationSort","ignoreMemberSort","strictMode","strict","variables","concat","confusingBrowserGlobals","args","argsIgnorePattern","caughtErrors","ignoreRestSiblings","vars","classes","functions","commonEslintRules"],"mappings":"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"}
|