eslint-plugin-nextfriday 1.7.0 → 1.8.0
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/CHANGELOG.md +10 -0
- package/README.md +11 -8
- package/docs/rules/NO_LAZY_IDENTIFIERS.md +106 -0
- package/lib/index.cjs +270 -131
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +14 -0
- package/lib/index.d.ts +14 -0
- package/lib/index.js +270 -131
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.cts
CHANGED
|
@@ -18,6 +18,7 @@ declare const rules: {
|
|
|
18
18
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
19
19
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
20
20
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
21
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
21
22
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
22
23
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
23
24
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -51,6 +52,7 @@ declare const configs: {
|
|
|
51
52
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
52
53
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
53
54
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
55
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
54
56
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
55
57
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
56
58
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -87,6 +89,7 @@ declare const configs: {
|
|
|
87
89
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
88
90
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
89
91
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
92
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
90
93
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
91
94
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
92
95
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -123,6 +126,7 @@ declare const configs: {
|
|
|
123
126
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
124
127
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
125
128
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
129
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
126
130
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
127
131
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
128
132
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -159,6 +163,7 @@ declare const configs: {
|
|
|
159
163
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
160
164
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
161
165
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
166
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
162
167
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
163
168
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
164
169
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -195,6 +200,7 @@ declare const configs: {
|
|
|
195
200
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
196
201
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
197
202
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
203
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
198
204
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
199
205
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
200
206
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -231,6 +237,7 @@ declare const configs: {
|
|
|
231
237
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
232
238
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
233
239
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
240
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
234
241
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
235
242
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
236
243
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -274,6 +281,7 @@ declare const nextfridayPlugin: {
|
|
|
274
281
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
275
282
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
276
283
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
284
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
277
285
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
278
286
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
279
287
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -310,6 +318,7 @@ declare const nextfridayPlugin: {
|
|
|
310
318
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
311
319
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
312
320
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
321
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
313
322
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
314
323
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
315
324
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -346,6 +355,7 @@ declare const nextfridayPlugin: {
|
|
|
346
355
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
347
356
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
348
357
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
358
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
349
359
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
350
360
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
351
361
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -382,6 +392,7 @@ declare const nextfridayPlugin: {
|
|
|
382
392
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
383
393
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
384
394
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
395
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
385
396
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
386
397
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
387
398
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -418,6 +429,7 @@ declare const nextfridayPlugin: {
|
|
|
418
429
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
419
430
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
420
431
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
432
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
421
433
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
422
434
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
423
435
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -454,6 +466,7 @@ declare const nextfridayPlugin: {
|
|
|
454
466
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
455
467
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
456
468
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
469
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
457
470
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
458
471
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
459
472
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -484,6 +497,7 @@ declare const nextfridayPlugin: {
|
|
|
484
497
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
485
498
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
486
499
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
500
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
487
501
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
488
502
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
489
503
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
package/lib/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ declare const rules: {
|
|
|
18
18
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
19
19
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
20
20
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
21
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
21
22
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
22
23
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
23
24
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -51,6 +52,7 @@ declare const configs: {
|
|
|
51
52
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
52
53
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
53
54
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
55
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
54
56
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
55
57
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
56
58
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -87,6 +89,7 @@ declare const configs: {
|
|
|
87
89
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
88
90
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
89
91
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
92
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
90
93
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
91
94
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
92
95
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -123,6 +126,7 @@ declare const configs: {
|
|
|
123
126
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
124
127
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
125
128
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
129
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
126
130
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
127
131
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
128
132
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -159,6 +163,7 @@ declare const configs: {
|
|
|
159
163
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
160
164
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
161
165
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
166
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
162
167
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
163
168
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
164
169
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -195,6 +200,7 @@ declare const configs: {
|
|
|
195
200
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
196
201
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
197
202
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
203
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
198
204
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
199
205
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
200
206
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -231,6 +237,7 @@ declare const configs: {
|
|
|
231
237
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
232
238
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
233
239
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
240
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
234
241
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
235
242
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
236
243
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -274,6 +281,7 @@ declare const nextfridayPlugin: {
|
|
|
274
281
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
275
282
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
276
283
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
284
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
277
285
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
278
286
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
279
287
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -310,6 +318,7 @@ declare const nextfridayPlugin: {
|
|
|
310
318
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
311
319
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
312
320
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
321
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
313
322
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
314
323
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
315
324
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -346,6 +355,7 @@ declare const nextfridayPlugin: {
|
|
|
346
355
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
347
356
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
348
357
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
358
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
349
359
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
350
360
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
351
361
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -382,6 +392,7 @@ declare const nextfridayPlugin: {
|
|
|
382
392
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
383
393
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
384
394
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
395
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
385
396
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
386
397
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
387
398
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -418,6 +429,7 @@ declare const nextfridayPlugin: {
|
|
|
418
429
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
419
430
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
420
431
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
432
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
421
433
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
422
434
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
423
435
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -454,6 +466,7 @@ declare const nextfridayPlugin: {
|
|
|
454
466
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
455
467
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
456
468
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
469
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
457
470
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
458
471
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
459
472
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|
|
@@ -484,6 +497,7 @@ declare const nextfridayPlugin: {
|
|
|
484
497
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
485
498
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
486
499
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
500
|
+
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
487
501
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
488
502
|
readonly "no-single-char-variables": TSESLint.RuleModule<"noSingleChar", [], unknown, TSESLint.RuleListener>;
|
|
489
503
|
readonly "prefer-destructuring-params": TSESLint.RuleModule<"preferDestructuring", [], unknown, TSESLint.RuleListener>;
|