@jsse/eslint-config 0.2.4 → 0.2.5

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/cli.cjs CHANGED
@@ -612,7 +612,7 @@ var CAC = class extends import_events.EventEmitter {
612
612
  var cac = (name = "") => new CAC(name);
613
613
 
614
614
  // package.json
615
- var version = "0.2.4";
615
+ var version = "0.2.5";
616
616
 
617
617
  // src/cli.ts
618
618
  var cli = cac("jsselint");
package/dist/cli.js CHANGED
@@ -588,7 +588,7 @@ var CAC = class extends EventEmitter {
588
588
  var cac = (name = "") => new CAC(name);
589
589
 
590
590
  // package.json
591
- var version = "0.2.4";
591
+ var version = "0.2.5";
592
592
 
593
593
  // src/cli.ts
594
594
  var cli = cac("jsselint");
package/dist/index.d.cts CHANGED
@@ -9775,6 +9775,10 @@ type PerfectionistSortEnums =
9775
9775
 
9776
9776
  ignoreCase?: boolean;
9777
9777
 
9778
+ sortByValue?: boolean;
9779
+
9780
+ forceNumericSort?: boolean;
9781
+
9778
9782
  partitionByComment?: string[] | boolean | string;
9779
9783
  },
9780
9784
  ];
@@ -13339,6 +13343,7 @@ type _StylisticPaddingLineBetweenStatementsStatementType =
13339
13343
  | "block"
13340
13344
  | "empty"
13341
13345
  | "function"
13346
+ | "ts-method"
13342
13347
  | "break"
13343
13348
  | "case"
13344
13349
  | "class"
@@ -13386,6 +13391,7 @@ type _StylisticPaddingLineBetweenStatementsStatementType =
13386
13391
  | "block"
13387
13392
  | "empty"
13388
13393
  | "function"
13394
+ | "ts-method"
13389
13395
  | "break"
13390
13396
  | "case"
13391
13397
  | "class"
@@ -13432,6 +13438,7 @@ type _StylisticPaddingLineBetweenStatementsStatementType =
13432
13438
  | "block"
13433
13439
  | "empty"
13434
13440
  | "function"
13441
+ | "ts-method"
13435
13442
  | "break"
13436
13443
  | "case"
13437
13444
  | "class"
@@ -14107,6 +14114,7 @@ type NoOnlyTestsNoOnlyTests =
14107
14114
  {
14108
14115
  block?: string[];
14109
14116
  focus?: string[];
14117
+ functions?: string[];
14110
14118
  fix?: boolean;
14111
14119
  },
14112
14120
  ];
@@ -14674,7 +14682,7 @@ interface TypescriptRuleOptions {
14674
14682
  */
14675
14683
  "@typescript-eslint/no-unnecessary-type-constraint"?: Linter.RuleEntry<[]>;
14676
14684
  /**
14677
- * Disallow type parameters that only appear once
14685
+ * Disallow type parameters that aren't used multiple times
14678
14686
  * @see https://typescript-eslint.io/rules/no-unnecessary-type-parameters
14679
14687
  */
14680
14688
  "@typescript-eslint/no-unnecessary-type-parameters"?: Linter.RuleEntry<[]>;
@@ -18099,6 +18107,7 @@ type TypescriptEslintNoMisusedPromises =
18099
18107
  | {
18100
18108
  arguments?: boolean;
18101
18109
  attributes?: boolean;
18110
+ inheritedMethods?: boolean;
18102
18111
  properties?: boolean;
18103
18112
  returns?: boolean;
18104
18113
  variables?: boolean;
package/dist/index.d.ts CHANGED
@@ -9775,6 +9775,10 @@ type PerfectionistSortEnums =
9775
9775
 
9776
9776
  ignoreCase?: boolean;
9777
9777
 
9778
+ sortByValue?: boolean;
9779
+
9780
+ forceNumericSort?: boolean;
9781
+
9778
9782
  partitionByComment?: string[] | boolean | string;
9779
9783
  },
9780
9784
  ];
@@ -13339,6 +13343,7 @@ type _StylisticPaddingLineBetweenStatementsStatementType =
13339
13343
  | "block"
13340
13344
  | "empty"
13341
13345
  | "function"
13346
+ | "ts-method"
13342
13347
  | "break"
13343
13348
  | "case"
13344
13349
  | "class"
@@ -13386,6 +13391,7 @@ type _StylisticPaddingLineBetweenStatementsStatementType =
13386
13391
  | "block"
13387
13392
  | "empty"
13388
13393
  | "function"
13394
+ | "ts-method"
13389
13395
  | "break"
13390
13396
  | "case"
13391
13397
  | "class"
@@ -13432,6 +13438,7 @@ type _StylisticPaddingLineBetweenStatementsStatementType =
13432
13438
  | "block"
13433
13439
  | "empty"
13434
13440
  | "function"
13441
+ | "ts-method"
13435
13442
  | "break"
13436
13443
  | "case"
13437
13444
  | "class"
@@ -14107,6 +14114,7 @@ type NoOnlyTestsNoOnlyTests =
14107
14114
  {
14108
14115
  block?: string[];
14109
14116
  focus?: string[];
14117
+ functions?: string[];
14110
14118
  fix?: boolean;
14111
14119
  },
14112
14120
  ];
@@ -14674,7 +14682,7 @@ interface TypescriptRuleOptions {
14674
14682
  */
14675
14683
  "@typescript-eslint/no-unnecessary-type-constraint"?: Linter.RuleEntry<[]>;
14676
14684
  /**
14677
- * Disallow type parameters that only appear once
14685
+ * Disallow type parameters that aren't used multiple times
14678
14686
  * @see https://typescript-eslint.io/rules/no-unnecessary-type-parameters
14679
14687
  */
14680
14688
  "@typescript-eslint/no-unnecessary-type-parameters"?: Linter.RuleEntry<[]>;
@@ -18099,6 +18107,7 @@ type TypescriptEslintNoMisusedPromises =
18099
18107
  | {
18100
18108
  arguments?: boolean;
18101
18109
  attributes?: boolean;
18110
+ inheritedMethods?: boolean;
18102
18111
  properties?: boolean;
18103
18112
  returns?: boolean;
18104
18113
  variables?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jsse/eslint-config",
3
3
  "type": "module",
4
- "version": "0.2.4",
4
+ "version": "0.2.5",
5
5
  "description": "@jsse/eslint-config ~ WYSIWYG",
6
6
  "author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
7
7
  "license": "MIT",
@@ -58,7 +58,7 @@
58
58
  }
59
59
  },
60
60
  "dependencies": {
61
- "@eslint/js": "~9.8.0",
61
+ "@eslint/js": "~9.9.0",
62
62
  "@stylistic/eslint-plugin": "2.6.2",
63
63
  "@typescript-eslint/eslint-plugin": "^8.0.0",
64
64
  "@typescript-eslint/parser": "^8.0.1",