linted 19.0.3 → 19.1.0-rc.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. package/dist/files/index.d.ts +1 -1
  2. package/dist/files/mocha.d.ts +1 -1
  3. package/dist/files/mocha.d.ts.map +1 -1
  4. package/dist/files/mocha.js +4 -1
  5. package/dist/files/mocha.js.map +1 -1
  6. package/dist/files/mochaJs.d.ts +3 -0
  7. package/dist/files/mochaJs.d.ts.map +1 -0
  8. package/dist/files/mochaJs.js +5 -0
  9. package/dist/files/mochaJs.js.map +1 -0
  10. package/dist/rules/index.d.ts +529 -1
  11. package/dist/rules/index.d.ts.map +1 -1
  12. package/dist/rules/mocha/base.d.ts +5 -0
  13. package/dist/rules/mocha/base.d.ts.map +1 -0
  14. package/dist/rules/mocha/base.js +9 -0
  15. package/dist/rules/mocha/base.js.map +1 -0
  16. package/dist/rules/mocha/disable.d.ts +5 -0
  17. package/dist/rules/mocha/disable.d.ts.map +1 -0
  18. package/dist/rules/mocha/disable.js +8 -0
  19. package/dist/rules/mocha/disable.js.map +1 -0
  20. package/dist/rules/mocha/enable.d.ts +1 -1
  21. package/dist/rules/mocha/enable.d.ts.map +1 -1
  22. package/dist/rules/mocha/enable.js.map +1 -1
  23. package/dist/rules/mocha/index.d.ts +529 -1
  24. package/dist/rules/mocha/index.d.ts.map +1 -1
  25. package/dist/rules/mocha/index.js +6 -3
  26. package/dist/rules/mocha/index.js.map +1 -1
  27. package/dist/rules/mochaJs/index.d.ts +422 -0
  28. package/dist/rules/mochaJs/index.d.ts.map +1 -0
  29. package/dist/rules/mochaJs/index.js +7 -0
  30. package/dist/rules/mochaJs/index.js.map +1 -0
  31. package/package.json +1 -1
  32. package/src/files/mocha.ts +4 -1
  33. package/src/files/mochaJs.ts +4 -0
  34. package/src/rules/mocha/base.ts +9 -0
  35. package/src/rules/mocha/disable.ts +8 -0
  36. package/src/rules/mocha/enable.ts +1 -1
  37. package/src/rules/mocha/index.ts +6 -3
  38. package/src/rules/mochaJs/index.ts +7 -0
@@ -0,0 +1,422 @@
1
+ declare const _default: (readonly ["stylistic", {
2
+ readonly "@stylistic/array-bracket-newline": readonly ["error", {
3
+ readonly multiline: true;
4
+ readonly minItems: null;
5
+ }];
6
+ readonly "@stylistic/array-bracket-spacing": readonly ["error", "never", {
7
+ readonly singleValue: false;
8
+ readonly objectsInArrays: false;
9
+ readonly arraysInArrays: false;
10
+ }];
11
+ readonly "@stylistic/array-element-newline": readonly ["error", {
12
+ readonly ArrayExpression: {
13
+ readonly consistent: true;
14
+ readonly multiline: true;
15
+ readonly minItems: 4;
16
+ };
17
+ readonly ArrayPattern: {
18
+ readonly consistent: true;
19
+ readonly multiline: true;
20
+ readonly minItems: 4;
21
+ };
22
+ }];
23
+ readonly "@stylistic/arrow-parens": readonly ["error", "as-needed", {
24
+ readonly requireForBlockBody: false;
25
+ }];
26
+ readonly "@stylistic/arrow-spacing": readonly ["error", {
27
+ readonly before: true;
28
+ readonly after: true;
29
+ }];
30
+ readonly "@stylistic/block-spacing": readonly ["error", "always"];
31
+ readonly "@stylistic/brace-style": readonly ["error", "stroustrup", {
32
+ readonly allowSingleLine: true;
33
+ }];
34
+ readonly "@stylistic/comma-dangle": readonly ["error", "always-multiline"];
35
+ readonly "@stylistic/comma-spacing": readonly ["error", {
36
+ readonly before: false;
37
+ readonly after: true;
38
+ }];
39
+ readonly "@stylistic/comma-style": readonly ["error", "last", {
40
+ readonly exceptions: {
41
+ readonly ArrayExpression: false;
42
+ readonly ArrayPattern: false;
43
+ readonly ArrowFunctionExpression: false;
44
+ readonly CallExpression: false;
45
+ readonly FunctionDeclaration: false;
46
+ readonly FunctionExpression: false;
47
+ readonly ImportDeclaration: false;
48
+ readonly ObjectExpression: false;
49
+ readonly ObjectPattern: false;
50
+ readonly VariableDeclaration: false;
51
+ readonly NewExpression: false;
52
+ };
53
+ }];
54
+ readonly "@stylistic/computed-property-spacing": readonly ["error", "never", {
55
+ readonly enforceForClassMembers: true;
56
+ }];
57
+ readonly "@stylistic/dot-location": readonly ["error", "property"];
58
+ readonly "@stylistic/eol-last": readonly ["error", "always"];
59
+ readonly "@stylistic/function-call-argument-newline": readonly ["error", "consistent"];
60
+ readonly "@stylistic/function-call-spacing": readonly ["error", "never"];
61
+ readonly "@stylistic/function-paren-newline": readonly ["error", "multiline-arguments"];
62
+ readonly "@stylistic/generator-star-spacing": readonly ["error", {
63
+ readonly before: true;
64
+ readonly after: false;
65
+ }];
66
+ readonly "@stylistic/implicit-arrow-linebreak": readonly ["error", "beside"];
67
+ readonly "@stylistic/indent": readonly ["error", 2, {
68
+ readonly ignoredNodes: readonly [];
69
+ readonly SwitchCase: 1;
70
+ readonly VariableDeclarator: {
71
+ readonly var: 0;
72
+ readonly let: 0;
73
+ readonly const: 0;
74
+ };
75
+ readonly outerIIFEBody: 0;
76
+ readonly MemberExpression: 1;
77
+ readonly FunctionDeclaration: {
78
+ readonly parameters: 1;
79
+ readonly body: 1;
80
+ };
81
+ readonly FunctionExpression: {
82
+ readonly parameters: 1;
83
+ readonly body: 1;
84
+ };
85
+ readonly StaticBlock: {
86
+ readonly body: 1;
87
+ };
88
+ readonly CallExpression: {
89
+ readonly arguments: 1;
90
+ };
91
+ readonly ArrayExpression: 1;
92
+ readonly ObjectExpression: 1;
93
+ readonly ImportDeclaration: 1;
94
+ readonly flatTernaryExpressions: false;
95
+ readonly offsetTernaryExpressions: true;
96
+ readonly ignoreComments: false;
97
+ }];
98
+ readonly "@stylistic/indent-binary-ops": readonly ["error", 2];
99
+ readonly "@stylistic/key-spacing": readonly ["error", {
100
+ readonly beforeColon: false;
101
+ readonly afterColon: true;
102
+ readonly mode: "strict";
103
+ }];
104
+ readonly "@stylistic/keyword-spacing": readonly ["error", {
105
+ readonly before: true;
106
+ readonly after: true;
107
+ readonly overrides: {};
108
+ }];
109
+ readonly "@stylistic/line-comment-position": "off";
110
+ readonly "@stylistic/lines-around-comment": readonly ["error", {
111
+ readonly beforeBlockComment: false;
112
+ readonly afterBlockComment: false;
113
+ readonly beforeLineComment: true;
114
+ readonly afterLineComment: false;
115
+ readonly allowBlockStart: true;
116
+ readonly allowBlockEnd: true;
117
+ readonly allowObjectStart: true;
118
+ readonly allowObjectEnd: true;
119
+ readonly allowArrayStart: true;
120
+ readonly allowArrayEnd: true;
121
+ readonly allowClassStart: true;
122
+ readonly allowClassEnd: true;
123
+ readonly applyDefaultIgnorePatterns: true;
124
+ readonly afterHashbangComment: false;
125
+ readonly allowEnumEnd: true;
126
+ readonly allowEnumStart: true;
127
+ readonly allowInterfaceEnd: true;
128
+ readonly allowInterfaceStart: true;
129
+ readonly allowModuleEnd: true;
130
+ readonly allowModuleStart: true;
131
+ readonly allowTypeEnd: true;
132
+ readonly allowTypeStart: true;
133
+ }];
134
+ readonly "@stylistic/lines-between-class-members": readonly ["error", {
135
+ readonly enforce: readonly [{
136
+ readonly prev: "field";
137
+ readonly next: "field";
138
+ readonly blankLine: "never";
139
+ }, {
140
+ readonly prev: "field";
141
+ readonly next: "method";
142
+ readonly blankLine: "always";
143
+ }, {
144
+ readonly prev: "method";
145
+ readonly next: "*";
146
+ readonly blankLine: "always";
147
+ }];
148
+ }, {
149
+ readonly exceptAfterSingleLine: false;
150
+ readonly exceptAfterOverload: true;
151
+ }];
152
+ readonly "@stylistic/max-len": readonly ["error", {
153
+ readonly code: 150;
154
+ readonly tabWidth: 2;
155
+ readonly ignoreComments: true;
156
+ readonly ignoreTrailingComments: true;
157
+ readonly ignoreUrls: true;
158
+ readonly ignoreStrings: true;
159
+ readonly ignoreTemplateLiterals: true;
160
+ readonly ignoreRegExpLiterals: true;
161
+ }];
162
+ readonly "@stylistic/max-statements-per-line": readonly ["error", {
163
+ readonly max: 1;
164
+ }];
165
+ readonly "@stylistic/member-delimiter-style": readonly ["error", {
166
+ readonly multiline: {
167
+ readonly delimiter: "semi";
168
+ readonly requireLast: true;
169
+ };
170
+ readonly singleline: {
171
+ readonly delimiter: "semi";
172
+ readonly requireLast: false;
173
+ };
174
+ readonly multilineDetection: "brackets";
175
+ }];
176
+ readonly "@stylistic/multiline-comment-style": "off";
177
+ readonly "@stylistic/multiline-ternary": readonly ["error", "always-multiline"];
178
+ readonly "@stylistic/new-parens": readonly ["off", "never"];
179
+ readonly "@stylistic/newline-per-chained-call": readonly ["error", {
180
+ readonly ignoreChainWithDepth: 2;
181
+ }];
182
+ readonly "@stylistic/no-confusing-arrow": "off";
183
+ readonly "@stylistic/no-extra-parens": readonly ["error", "all", {
184
+ readonly conditionalAssign: true;
185
+ readonly returnAssign: true;
186
+ readonly nestedBinaryExpressions: true;
187
+ readonly ternaryOperandBinaryExpressions: true;
188
+ readonly enforceForArrowConditionals: true;
189
+ readonly enforceForSequenceExpressions: true;
190
+ readonly enforceForNewInMemberExpressions: true;
191
+ readonly enforceForFunctionPrototypeMethods: true;
192
+ }];
193
+ readonly "@stylistic/no-extra-semi": "error";
194
+ readonly "@stylistic/no-floating-decimal": "error";
195
+ readonly "@stylistic/no-mixed-operators": "off";
196
+ readonly "@stylistic/no-mixed-spaces-and-tabs": "error";
197
+ readonly "@stylistic/no-multi-spaces": readonly ["error", {
198
+ readonly ignoreEOLComments: false;
199
+ readonly exceptions: {
200
+ readonly Property: false;
201
+ };
202
+ readonly includeTabs: true;
203
+ }];
204
+ readonly "@stylistic/no-multiple-empty-lines": readonly ["error", {
205
+ readonly max: 1;
206
+ readonly maxEOF: 1;
207
+ readonly maxBOF: 0;
208
+ }];
209
+ readonly "@stylistic/no-tabs": readonly ["error", {
210
+ readonly allowIndentationTabs: false;
211
+ }];
212
+ readonly "@stylistic/no-trailing-spaces": readonly ["error", {
213
+ readonly skipBlankLines: false;
214
+ readonly ignoreComments: false;
215
+ }];
216
+ readonly "@stylistic/no-whitespace-before-property": "error";
217
+ readonly "@stylistic/nonblock-statement-body-position": readonly ["error", "below", {
218
+ readonly overrides: {
219
+ readonly if: "below";
220
+ readonly else: "below";
221
+ readonly while: "below";
222
+ readonly do: "below";
223
+ readonly for: "below";
224
+ };
225
+ }];
226
+ readonly "@stylistic/object-curly-newline": readonly ["error", {
227
+ readonly ObjectExpression: {
228
+ readonly consistent: true;
229
+ readonly multiline: true;
230
+ readonly minProperties: 4;
231
+ };
232
+ readonly ObjectPattern: {
233
+ readonly consistent: true;
234
+ readonly multiline: true;
235
+ readonly minProperties: 4;
236
+ };
237
+ readonly ImportDeclaration: {
238
+ readonly consistent: true;
239
+ readonly multiline: true;
240
+ readonly minProperties: 4;
241
+ };
242
+ readonly ExportDeclaration: {
243
+ readonly consistent: true;
244
+ readonly multiline: true;
245
+ readonly minProperties: 4;
246
+ };
247
+ }];
248
+ readonly "@stylistic/object-curly-spacing": readonly ["error", "always", {
249
+ readonly arraysInObjects: true;
250
+ readonly objectsInObjects: true;
251
+ }];
252
+ readonly "@stylistic/object-property-newline": readonly ["error", {
253
+ readonly allowAllPropertiesOnSameLine: true;
254
+ }];
255
+ readonly "@stylistic/one-var-declaration-per-line": readonly ["error", "always"];
256
+ readonly "@stylistic/operator-linebreak": readonly ["error", "before", {
257
+ readonly overrides: {
258
+ readonly "=": "after";
259
+ };
260
+ }];
261
+ readonly "@stylistic/padded-blocks": readonly ["error", {
262
+ readonly blocks: "never";
263
+ readonly classes: "never";
264
+ readonly switches: "never";
265
+ }, {
266
+ readonly allowSingleLineBlocks: true;
267
+ }];
268
+ readonly "@stylistic/padding-line-between-statements": readonly ["error", {
269
+ readonly prev: "directive";
270
+ readonly next: "*";
271
+ readonly blankLine: "always";
272
+ }, {
273
+ readonly prev: "directive";
274
+ readonly next: "directive";
275
+ readonly blankLine: "never";
276
+ }, {
277
+ readonly prev: readonly ["import", "cjs-import"];
278
+ readonly next: "*";
279
+ readonly blankLine: "always";
280
+ }, {
281
+ readonly prev: readonly ["import", "cjs-import"];
282
+ readonly next: readonly ["import", "cjs-import"];
283
+ readonly blankLine: "never";
284
+ }, {
285
+ readonly prev: readonly ["class", "interface", "try", "for", "if", "do", "while", "switch", "block", "block-like", "iife", "empty", "debugger", "with"];
286
+ readonly next: "*";
287
+ readonly blankLine: "always";
288
+ }, {
289
+ readonly prev: "case";
290
+ readonly next: "*";
291
+ readonly blankLine: "always";
292
+ }, {
293
+ readonly prev: "case";
294
+ readonly next: readonly ["case", "default"];
295
+ readonly blankLine: "always";
296
+ }, {
297
+ readonly prev: "default";
298
+ readonly next: "*";
299
+ readonly blankLine: "always";
300
+ }, {
301
+ readonly prev: "type";
302
+ readonly next: "*";
303
+ readonly blankLine: "always";
304
+ }, {
305
+ readonly prev: "type";
306
+ readonly next: "type";
307
+ readonly blankLine: "never";
308
+ }, {
309
+ readonly prev: "function";
310
+ readonly next: "*";
311
+ readonly blankLine: "always";
312
+ }, {
313
+ readonly prev: "function-overload";
314
+ readonly next: "*";
315
+ readonly blankLine: "always";
316
+ }, {
317
+ readonly prev: "function-overload";
318
+ readonly next: "function-overload";
319
+ readonly blankLine: "never";
320
+ }, {
321
+ readonly prev: "function-overload";
322
+ readonly next: "function";
323
+ readonly blankLine: "never";
324
+ }, {
325
+ readonly prev: readonly ["const", "let", "var"];
326
+ readonly next: "*";
327
+ readonly blankLine: "always";
328
+ }, {
329
+ readonly prev: readonly ["const", "let", "var"];
330
+ readonly next: readonly ["const", "let", "var"];
331
+ readonly blankLine: "never";
332
+ }, {
333
+ readonly prev: "expression";
334
+ readonly next: "*";
335
+ readonly blankLine: "always";
336
+ }, {
337
+ readonly prev: "expression";
338
+ readonly next: "expression";
339
+ readonly blankLine: "never";
340
+ }, {
341
+ readonly prev: "*";
342
+ readonly next: readonly ["throw", "return", "break", "continue"];
343
+ readonly blankLine: "always";
344
+ }, {
345
+ readonly prev: "*";
346
+ readonly next: readonly ["export", "cjs-export"];
347
+ readonly blankLine: "always";
348
+ }, {
349
+ readonly prev: readonly ["export", "cjs-export"];
350
+ readonly next: readonly ["export", "cjs-export"];
351
+ readonly blankLine: "never";
352
+ }];
353
+ readonly "@stylistic/quote-props": readonly ["error", "as-needed", {
354
+ readonly keywords: true;
355
+ readonly unnecessary: true;
356
+ readonly numbers: false;
357
+ }];
358
+ readonly "@stylistic/quotes": readonly ["error", "double", {
359
+ readonly avoidEscape: true;
360
+ readonly allowTemplateLiterals: true;
361
+ }];
362
+ readonly "@stylistic/rest-spread-spacing": readonly ["error", "never"];
363
+ readonly "@stylistic/semi": readonly ["error", "always", {
364
+ readonly omitLastInOneLineBlock: false;
365
+ readonly omitLastInOneLineClassBody: false;
366
+ }];
367
+ readonly "@stylistic/semi-spacing": readonly ["error", {
368
+ readonly before: false;
369
+ readonly after: true;
370
+ }];
371
+ readonly "@stylistic/semi-style": readonly ["error", "last"];
372
+ readonly "@stylistic/space-before-blocks": readonly ["error", {
373
+ readonly functions: "always";
374
+ readonly keywords: "always";
375
+ readonly classes: "always";
376
+ }];
377
+ readonly "@stylistic/space-before-function-paren": readonly ["error", {
378
+ readonly anonymous: "always";
379
+ readonly named: "never";
380
+ readonly asyncArrow: "always";
381
+ }];
382
+ readonly "@stylistic/space-in-parens": readonly ["error", "never"];
383
+ readonly "@stylistic/space-infix-ops": readonly ["error", {
384
+ readonly int32Hint: true;
385
+ }];
386
+ readonly "@stylistic/space-unary-ops": readonly ["error", {
387
+ readonly words: true;
388
+ readonly nonwords: false;
389
+ readonly overrides: {};
390
+ }];
391
+ readonly "@stylistic/spaced-comment": readonly ["error", "always"];
392
+ readonly "@stylistic/switch-colon-spacing": readonly ["error", {
393
+ readonly after: true;
394
+ readonly before: false;
395
+ }];
396
+ readonly "@stylistic/template-curly-spacing": readonly ["error", "never"];
397
+ readonly "@stylistic/template-tag-spacing": readonly ["error", "never"];
398
+ readonly "@stylistic/type-annotation-spacing": readonly ["error", {
399
+ readonly before: true;
400
+ readonly after: true;
401
+ readonly overrides: {
402
+ readonly colon: {
403
+ readonly before: false;
404
+ readonly after: true;
405
+ };
406
+ };
407
+ }];
408
+ readonly "@stylistic/type-generic-spacing": "error";
409
+ readonly "@stylistic/type-named-tuple-spacing": "error";
410
+ readonly "@stylistic/wrap-iife": readonly ["error", "inside", {
411
+ readonly functionPrototypeMethods: true;
412
+ }];
413
+ readonly "@stylistic/wrap-regex": "error";
414
+ readonly "@stylistic/yield-star-spacing": readonly ["error", {
415
+ readonly before: false;
416
+ readonly after: true;
417
+ }];
418
+ }] | readonly ["recommended", Record<string, "off">] | readonly ["disable", {
419
+ readonly "prefer-arrow-callback": "off";
420
+ }] | readonly ["enable", {}])[];
421
+ export default _default;
422
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/rules/mochaJs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,wBAGE"}
@@ -0,0 +1,7 @@
1
+ import js from "../js/index.js";
2
+ import base from "../mocha/base.js";
3
+ export default [
4
+ ...js,
5
+ ...base,
6
+ ];
7
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/rules/mochaJs/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,OAAO,CAAC;AACvB,OAAO,IAAI,MAAM,eAAe,CAAC;AAEjC,eAAe;IACb,GAAG,EAAE;IACL,GAAG,IAAI;CACR,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "_schemaVersion": "20.18.0",
3
3
  "name": "linted",
4
- "version": "19.0.3",
4
+ "version": "19.1.0-rc.1",
5
5
  "description": "ESLint mono-plugin bundler with strict, opinionated defaults for (Stylistic) JavaScript, TypeScript, Svelte, HTML, Tailwind/CSS, JSON, JSONC, YAML, and Mocha.",
6
6
  "keywords": [
7
7
  "eslint",
@@ -1 +1,4 @@
1
- export default [];
1
+ export default [
2
+ "**/*.{spec,test}.{c,m,}ts",
3
+ "**/test{s,}/**/*.{c,m,}ts",
4
+ ];
@@ -0,0 +1,4 @@
1
+ export default [
2
+ "**/*.{spec,test}.{c,m,}js",
3
+ "**/test{s,}/**/*.{c,m,}js",
4
+ ];
@@ -0,0 +1,9 @@
1
+ import disable from "./disable";
2
+ import recommended from "./enable_recommended";
3
+ import enable from "./enable";
4
+
5
+ export default [
6
+ disable,
7
+ recommended,
8
+ enable,
9
+ ];
@@ -0,0 +1,8 @@
1
+ import { disable, OFF } from "../../_strings";
2
+
3
+ export default [
4
+ disable,
5
+ {
6
+ "prefer-arrow-callback": OFF,
7
+ },
8
+ ] as const;
@@ -1,3 +1,3 @@
1
1
  import { enable } from "../../_strings";
2
2
 
3
- export default [enable, {}];
3
+ export default [enable, {}] as const;
@@ -1,4 +1,7 @@
1
- import recommended from "./enable_recommended";
2
- import enable from "../html/enable";
1
+ import ts from "../ts";
2
+ import base from "./base";
3
3
 
4
- export default [recommended, enable];
4
+ export default [
5
+ ...ts,
6
+ ...base,
7
+ ];
@@ -0,0 +1,7 @@
1
+ import js from "../js";
2
+ import base from "../mocha/base";
3
+
4
+ export default [
5
+ ...js,
6
+ ...base,
7
+ ];