eslint-plugin-nextfriday 1.8.0 → 1.9.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 +10 -7
- package/docs/rules/NO_INLINE_DEFAULT_EXPORT.md +78 -0
- package/lib/index.cjs +243 -174
- 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 +243 -174
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.cts
CHANGED
|
@@ -17,6 +17,7 @@ declare const rules: {
|
|
|
17
17
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
18
18
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
19
19
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
20
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
20
21
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
21
22
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
22
23
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -51,6 +52,7 @@ declare const configs: {
|
|
|
51
52
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
52
53
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
53
54
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
55
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
54
56
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
55
57
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
56
58
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -88,6 +90,7 @@ declare const configs: {
|
|
|
88
90
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
89
91
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
90
92
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
93
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
91
94
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
92
95
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
93
96
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -125,6 +128,7 @@ declare const configs: {
|
|
|
125
128
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
126
129
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
127
130
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
131
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
128
132
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
129
133
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
130
134
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -162,6 +166,7 @@ declare const configs: {
|
|
|
162
166
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
163
167
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
164
168
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
169
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
165
170
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
166
171
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
167
172
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -199,6 +204,7 @@ declare const configs: {
|
|
|
199
204
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
200
205
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
201
206
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
207
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
202
208
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
203
209
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
204
210
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -236,6 +242,7 @@ declare const configs: {
|
|
|
236
242
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
237
243
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
238
244
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
245
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
239
246
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
240
247
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
241
248
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -280,6 +287,7 @@ declare const nextfridayPlugin: {
|
|
|
280
287
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
281
288
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
282
289
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
290
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
283
291
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
284
292
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
285
293
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -317,6 +325,7 @@ declare const nextfridayPlugin: {
|
|
|
317
325
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
318
326
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
319
327
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
328
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
320
329
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
321
330
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
322
331
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -354,6 +363,7 @@ declare const nextfridayPlugin: {
|
|
|
354
363
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
355
364
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
356
365
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
366
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
357
367
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
358
368
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
359
369
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -391,6 +401,7 @@ declare const nextfridayPlugin: {
|
|
|
391
401
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
392
402
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
393
403
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
404
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
394
405
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
395
406
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
396
407
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -428,6 +439,7 @@ declare const nextfridayPlugin: {
|
|
|
428
439
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
429
440
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
430
441
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
442
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
431
443
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
432
444
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
433
445
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -465,6 +477,7 @@ declare const nextfridayPlugin: {
|
|
|
465
477
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
466
478
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
467
479
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
480
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
468
481
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
469
482
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
470
483
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -496,6 +509,7 @@ declare const nextfridayPlugin: {
|
|
|
496
509
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
497
510
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
498
511
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
512
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
499
513
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
500
514
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
501
515
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
package/lib/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ declare const rules: {
|
|
|
17
17
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
18
18
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
19
19
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
20
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
20
21
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
21
22
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
22
23
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -51,6 +52,7 @@ declare const configs: {
|
|
|
51
52
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
52
53
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
53
54
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
55
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
54
56
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
55
57
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
56
58
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -88,6 +90,7 @@ declare const configs: {
|
|
|
88
90
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
89
91
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
90
92
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
93
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
91
94
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
92
95
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
93
96
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -125,6 +128,7 @@ declare const configs: {
|
|
|
125
128
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
126
129
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
127
130
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
131
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
128
132
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
129
133
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
130
134
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -162,6 +166,7 @@ declare const configs: {
|
|
|
162
166
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
163
167
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
164
168
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
169
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
165
170
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
166
171
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
167
172
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -199,6 +204,7 @@ declare const configs: {
|
|
|
199
204
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
200
205
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
201
206
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
207
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
202
208
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
203
209
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
204
210
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -236,6 +242,7 @@ declare const configs: {
|
|
|
236
242
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
237
243
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
238
244
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
245
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
239
246
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
240
247
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
241
248
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -280,6 +287,7 @@ declare const nextfridayPlugin: {
|
|
|
280
287
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
281
288
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
282
289
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
290
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
283
291
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
284
292
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
285
293
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -317,6 +325,7 @@ declare const nextfridayPlugin: {
|
|
|
317
325
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
318
326
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
319
327
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
328
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
320
329
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
321
330
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
322
331
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -354,6 +363,7 @@ declare const nextfridayPlugin: {
|
|
|
354
363
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
355
364
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
356
365
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
366
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
357
367
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
358
368
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
359
369
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -391,6 +401,7 @@ declare const nextfridayPlugin: {
|
|
|
391
401
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
392
402
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
393
403
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
404
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
394
405
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
395
406
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
396
407
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -428,6 +439,7 @@ declare const nextfridayPlugin: {
|
|
|
428
439
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
429
440
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
430
441
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
442
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
431
443
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
432
444
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
433
445
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -465,6 +477,7 @@ declare const nextfridayPlugin: {
|
|
|
465
477
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
466
478
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
467
479
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
480
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
468
481
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
469
482
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
470
483
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|
|
@@ -496,6 +509,7 @@ declare const nextfridayPlugin: {
|
|
|
496
509
|
readonly "no-direct-date": TSESLint.RuleModule<"noNewDate" | "noDateNow" | "noDateParse", [], unknown, TSESLint.RuleListener>;
|
|
497
510
|
readonly "no-emoji": TSESLint.RuleModule<"noEmoji", [], unknown, TSESLint.RuleListener>;
|
|
498
511
|
readonly "no-env-fallback": TSESLint.RuleModule<"noEnvFallback", [], unknown, TSESLint.RuleListener>;
|
|
512
|
+
readonly "no-inline-default-export": TSESLint.RuleModule<"noInlineDefaultExport" | "noAnonymousDefaultExport", [], unknown, TSESLint.RuleListener>;
|
|
499
513
|
readonly "require-explicit-return-type": TSESLint.RuleModule<"missingReturnType" | "missingReturnTypeAnonymous", [], unknown, TSESLint.RuleListener>;
|
|
500
514
|
readonly "no-lazy-identifiers": TSESLint.RuleModule<"noLazyIdentifier", [], unknown, TSESLint.RuleListener>;
|
|
501
515
|
readonly "no-logic-in-params": TSESLint.RuleModule<"noLogicInParams", [], unknown, TSESLint.RuleListener>;
|