@sarj/eslint-plugin 15.4.0 → 15.6.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/dist/index.cjs +255 -119
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +257 -121
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -225,7 +225,7 @@ declare const rules: {
|
|
|
225
225
|
readonly "no-silent-promise-catch": DocumentedRule<readonly [], "silentCatch">;
|
|
226
226
|
readonly "no-sleep-in-test-body": DocumentedRule<readonly [], "noSleepInTestBody">;
|
|
227
227
|
readonly "no-storage-in-stateless-modules": DocumentedRule<readonly [RuleOptions$3?], "storageInStatelessModule">;
|
|
228
|
-
readonly "no-string-concat-in-loop": DocumentedRule<readonly [], "noStringConcatInLoop">;
|
|
228
|
+
readonly "no-string-concat-in-loop": DocumentedRule<readonly [], "noStringConcatInLoop" | "noStringReduce">;
|
|
229
229
|
readonly "no-tautological-expect": DocumentedRule<readonly [], "tautologicalComparison" | "tautologicalMatcher">;
|
|
230
230
|
readonly "no-typed-doc-sections": DocumentedRule<readonly [], "typedSection">;
|
|
231
231
|
readonly "no-trailing-value-narration": DocumentedRule<readonly [], "deleteNarration" | "narratesValue">;
|
|
@@ -415,7 +415,7 @@ type FlatPreset = {
|
|
|
415
415
|
declare const plugin: {
|
|
416
416
|
readonly meta: {
|
|
417
417
|
readonly name: "@sarj/eslint-plugin";
|
|
418
|
-
readonly version: "15.
|
|
418
|
+
readonly version: "15.6.0";
|
|
419
419
|
};
|
|
420
420
|
readonly rules: {
|
|
421
421
|
readonly "duplicate-test-body": DocumentedRule<readonly [], "duplicateTestBody">;
|
|
@@ -455,7 +455,7 @@ declare const plugin: {
|
|
|
455
455
|
readonly "no-silent-promise-catch": DocumentedRule<readonly [], "silentCatch">;
|
|
456
456
|
readonly "no-sleep-in-test-body": DocumentedRule<readonly [], "noSleepInTestBody">;
|
|
457
457
|
readonly "no-storage-in-stateless-modules": DocumentedRule<readonly [RuleOptions$3?], "storageInStatelessModule">;
|
|
458
|
-
readonly "no-string-concat-in-loop": DocumentedRule<readonly [], "noStringConcatInLoop">;
|
|
458
|
+
readonly "no-string-concat-in-loop": DocumentedRule<readonly [], "noStringConcatInLoop" | "noStringReduce">;
|
|
459
459
|
readonly "no-tautological-expect": DocumentedRule<readonly [], "tautologicalComparison" | "tautologicalMatcher">;
|
|
460
460
|
readonly "no-typed-doc-sections": DocumentedRule<readonly [], "typedSection">;
|
|
461
461
|
readonly "no-trailing-value-narration": DocumentedRule<readonly [], "deleteNarration" | "narratesValue">;
|
package/dist/index.d.ts
CHANGED
|
@@ -225,7 +225,7 @@ declare const rules: {
|
|
|
225
225
|
readonly "no-silent-promise-catch": DocumentedRule<readonly [], "silentCatch">;
|
|
226
226
|
readonly "no-sleep-in-test-body": DocumentedRule<readonly [], "noSleepInTestBody">;
|
|
227
227
|
readonly "no-storage-in-stateless-modules": DocumentedRule<readonly [RuleOptions$3?], "storageInStatelessModule">;
|
|
228
|
-
readonly "no-string-concat-in-loop": DocumentedRule<readonly [], "noStringConcatInLoop">;
|
|
228
|
+
readonly "no-string-concat-in-loop": DocumentedRule<readonly [], "noStringConcatInLoop" | "noStringReduce">;
|
|
229
229
|
readonly "no-tautological-expect": DocumentedRule<readonly [], "tautologicalComparison" | "tautologicalMatcher">;
|
|
230
230
|
readonly "no-typed-doc-sections": DocumentedRule<readonly [], "typedSection">;
|
|
231
231
|
readonly "no-trailing-value-narration": DocumentedRule<readonly [], "deleteNarration" | "narratesValue">;
|
|
@@ -415,7 +415,7 @@ type FlatPreset = {
|
|
|
415
415
|
declare const plugin: {
|
|
416
416
|
readonly meta: {
|
|
417
417
|
readonly name: "@sarj/eslint-plugin";
|
|
418
|
-
readonly version: "15.
|
|
418
|
+
readonly version: "15.6.0";
|
|
419
419
|
};
|
|
420
420
|
readonly rules: {
|
|
421
421
|
readonly "duplicate-test-body": DocumentedRule<readonly [], "duplicateTestBody">;
|
|
@@ -455,7 +455,7 @@ declare const plugin: {
|
|
|
455
455
|
readonly "no-silent-promise-catch": DocumentedRule<readonly [], "silentCatch">;
|
|
456
456
|
readonly "no-sleep-in-test-body": DocumentedRule<readonly [], "noSleepInTestBody">;
|
|
457
457
|
readonly "no-storage-in-stateless-modules": DocumentedRule<readonly [RuleOptions$3?], "storageInStatelessModule">;
|
|
458
|
-
readonly "no-string-concat-in-loop": DocumentedRule<readonly [], "noStringConcatInLoop">;
|
|
458
|
+
readonly "no-string-concat-in-loop": DocumentedRule<readonly [], "noStringConcatInLoop" | "noStringReduce">;
|
|
459
459
|
readonly "no-tautological-expect": DocumentedRule<readonly [], "tautologicalComparison" | "tautologicalMatcher">;
|
|
460
460
|
readonly "no-typed-doc-sections": DocumentedRule<readonly [], "typedSection">;
|
|
461
461
|
readonly "no-trailing-value-narration": DocumentedRule<readonly [], "deleteNarration" | "narratesValue">;
|