@jsse/eslint-config 0.2.26 → 0.2.27

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jsse/eslint-config
2
2
 
3
+ ## 0.2.27
4
+
5
+ ### Patch Changes
6
+
7
+ - version updates
8
+
3
9
  ## 0.2.26
4
10
 
5
11
  ### Patch Changes
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.26";
615
+ var version = "0.2.27";
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.26";
591
+ var version = "0.2.27";
592
592
 
593
593
  // src/cli.ts
594
594
  var cli = cac("jsselint");
@@ -1 +1 @@
1
- export declare const VERSION = "0.2.26";
1
+ export declare const VERSION = "0.2.27";
@@ -1 +1 @@
1
- export const VERSION = "0.2.26";
1
+ export const VERSION = "0.2.27";
package/dist/index.cjs CHANGED
@@ -13364,7 +13364,7 @@ async function defineConfig(options = {}, ...userConfigs) {
13364
13364
  }
13365
13365
 
13366
13366
  // src/generated/version.ts
13367
- var VERSION = "0.2.26";
13367
+ var VERSION = "0.2.27";
13368
13368
 
13369
13369
  // src/presets.ts
13370
13370
  var jsseReact = (options, ...configs) => {
package/dist/index.d.cts CHANGED
@@ -15474,6 +15474,11 @@ interface TypescriptRuleOptions {
15474
15474
  * @see https://typescript-eslint.io/rules/no-unsafe-return
15475
15475
  */
15476
15476
  "@typescript-eslint/no-unsafe-return"?: Linter.RuleEntry<[]>;
15477
+ /**
15478
+ * Disallow type assertions that narrow a type
15479
+ * @see https://typescript-eslint.io/rules/no-unsafe-type-assertion
15480
+ */
15481
+ "@typescript-eslint/no-unsafe-type-assertion"?: Linter.RuleEntry<[]>;
15477
15482
  /**
15478
15483
  * Require unary negation to take a number
15479
15484
  * @see https://typescript-eslint.io/rules/no-unsafe-unary-minus
@@ -15631,6 +15636,11 @@ interface TypescriptRuleOptions {
15631
15636
  * @see https://typescript-eslint.io/rules/promise-function-async
15632
15637
  */
15633
15638
  "@typescript-eslint/promise-function-async"?: Linter.RuleEntry<TypescriptEslintPromiseFunctionAsync>;
15639
+ /**
15640
+ * Enforce that `get()` types should be assignable to their equivalent `set()` type
15641
+ * @see https://typescript-eslint.io/rules/related-getter-setter-pairs
15642
+ */
15643
+ "@typescript-eslint/related-getter-setter-pairs"?: Linter.RuleEntry<[]>;
15634
15644
  /**
15635
15645
  * Require `Array#sort` and `Array#toSorted` calls to always provide a `compareFunction`
15636
15646
  * @see https://typescript-eslint.io/rules/require-array-sort-compare
@@ -21755,7 +21765,7 @@ declare function jsse(options?: OptionsConfig & TypedFlatConfigItem, ...userConf
21755
21765
  declare function defineConfig(options?: OptionsConfig & TypedFlatConfigItem, ...userConfigs: (TypedFlatConfigItem | TypedFlatConfigItem[])[]): Promise<TypedFlatConfigItem[]>;
21756
21766
  type DefineConfig = typeof defineConfig;
21757
21767
 
21758
- declare const VERSION = "0.2.26";
21768
+ declare const VERSION = "0.2.27";
21759
21769
 
21760
21770
  declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
21761
21771
  declare const GLOB_JS_SRC_EXT = "?([cm])js?(x)";
package/dist/index.d.ts CHANGED
@@ -15474,6 +15474,11 @@ interface TypescriptRuleOptions {
15474
15474
  * @see https://typescript-eslint.io/rules/no-unsafe-return
15475
15475
  */
15476
15476
  "@typescript-eslint/no-unsafe-return"?: Linter.RuleEntry<[]>;
15477
+ /**
15478
+ * Disallow type assertions that narrow a type
15479
+ * @see https://typescript-eslint.io/rules/no-unsafe-type-assertion
15480
+ */
15481
+ "@typescript-eslint/no-unsafe-type-assertion"?: Linter.RuleEntry<[]>;
15477
15482
  /**
15478
15483
  * Require unary negation to take a number
15479
15484
  * @see https://typescript-eslint.io/rules/no-unsafe-unary-minus
@@ -15631,6 +15636,11 @@ interface TypescriptRuleOptions {
15631
15636
  * @see https://typescript-eslint.io/rules/promise-function-async
15632
15637
  */
15633
15638
  "@typescript-eslint/promise-function-async"?: Linter.RuleEntry<TypescriptEslintPromiseFunctionAsync>;
15639
+ /**
15640
+ * Enforce that `get()` types should be assignable to their equivalent `set()` type
15641
+ * @see https://typescript-eslint.io/rules/related-getter-setter-pairs
15642
+ */
15643
+ "@typescript-eslint/related-getter-setter-pairs"?: Linter.RuleEntry<[]>;
15634
15644
  /**
15635
15645
  * Require `Array#sort` and `Array#toSorted` calls to always provide a `compareFunction`
15636
15646
  * @see https://typescript-eslint.io/rules/require-array-sort-compare
@@ -21755,7 +21765,7 @@ declare function jsse(options?: OptionsConfig & TypedFlatConfigItem, ...userConf
21755
21765
  declare function defineConfig(options?: OptionsConfig & TypedFlatConfigItem, ...userConfigs: (TypedFlatConfigItem | TypedFlatConfigItem[])[]): Promise<TypedFlatConfigItem[]>;
21756
21766
  type DefineConfig = typeof defineConfig;
21757
21767
 
21758
- declare const VERSION = "0.2.26";
21768
+ declare const VERSION = "0.2.27";
21759
21769
 
21760
21770
  declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
21761
21771
  declare const GLOB_JS_SRC_EXT = "?([cm])js?(x)";
package/dist/index.js CHANGED
@@ -13311,7 +13311,7 @@ async function defineConfig(options = {}, ...userConfigs) {
13311
13311
  }
13312
13312
 
13313
13313
  // src/generated/version.ts
13314
- var VERSION = "0.2.26";
13314
+ var VERSION = "0.2.27";
13315
13315
 
13316
13316
  // src/presets.ts
13317
13317
  var jsseReact = (options, ...configs) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jsse/eslint-config",
3
3
  "type": "module",
4
- "version": "0.2.26",
4
+ "version": "0.2.27",
5
5
  "description": "@jsse/eslint-config ~ WYSIWYG",
6
6
  "author": "jessekrubin <jessekrubin@gmail.com> (https://github.com/jessekrubin/)",
7
7
  "license": "MIT",
@@ -68,11 +68,11 @@
68
68
  "dependencies": {
69
69
  "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
70
70
  "@eslint/compat": "^1.2.3",
71
- "@eslint/js": "~9.14.0",
71
+ "@eslint/js": "~9.15.0",
72
72
  "@eslint/markdown": "^6.2.1",
73
73
  "@stylistic/eslint-plugin": "2.10.1",
74
- "@typescript-eslint/eslint-plugin": "^8.14.0",
75
- "@typescript-eslint/parser": "^8.14.0",
74
+ "@typescript-eslint/eslint-plugin": "^8.15.0",
75
+ "@typescript-eslint/parser": "^8.15.0",
76
76
  "@vitest/eslint-plugin": "^1.1.10",
77
77
  "eslint-config-flat-gitignore": "^0.3.0",
78
78
  "eslint-define-config": "^2.1.0",
@@ -95,7 +95,7 @@
95
95
  "eslint-plugin-yml": "^1.15.0",
96
96
  "jsonc-eslint-parser": "^2.4.0",
97
97
  "toml-eslint-parser": "^0.10.0",
98
- "typescript-eslint": "^8.14.0",
98
+ "typescript-eslint": "^8.15.0",
99
99
  "yaml-eslint-parser": "^1.2.3"
100
100
  },
101
101
  "devDependencies": {
@@ -109,7 +109,7 @@
109
109
  "@types/fs-extra": "^11.0.4",
110
110
  "@types/node": "^22.9.0",
111
111
  "cac": "^6.7.14",
112
- "eslint": "^9.14.0",
112
+ "eslint": "^9.15.0",
113
113
  "eslint-flat-config-utils": "^0.4.0",
114
114
  "eslint-plugin-tailwindcss": "^3.17.5",
115
115
  "eslint-typegen": "^0.3.2",