@jsse/eslint-config 0.3.2 → 0.3.3

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.3.3
4
+
5
+ ### Patch Changes
6
+
7
+ - updated dep versions
8
+
3
9
  ## 0.3.2
4
10
 
5
11
  ### Patch Changes
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
  // src/generated/version.ts
591
- var VERSION = "0.3.2";
591
+ var VERSION = "0.3.3";
592
592
 
593
593
  // src/cli.ts
594
594
  var cli = cac("jsselint");
@@ -240,7 +240,6 @@ export const fixableRules = {
240
240
  "@typescript-eslint/no-unnecessary-template-expression",
241
241
  "@typescript-eslint/no-unnecessary-type-arguments",
242
242
  "@typescript-eslint/no-unnecessary-type-assertion",
243
- "@typescript-eslint/no-unsafe-function-type",
244
243
  "@typescript-eslint/no-useless-empty-export",
245
244
  "@typescript-eslint/no-wrapper-object-types",
246
245
  "@typescript-eslint/non-nullable-type-assertion-style",
@@ -259,7 +258,6 @@ export const fixableRules = {
259
258
  "@typescript-eslint/promise-function-async",
260
259
  "@typescript-eslint/return-await",
261
260
  "@typescript-eslint/sort-type-constituents",
262
- "@typescript-eslint/use-unknown-in-catch-callback-variable",
263
261
  ],
264
262
  unicorn: [
265
263
  "unicorn/better-regex",
@@ -374,6 +372,7 @@ export const fixableRules = {
374
372
  "vitest/padding-around-test-blocks",
375
373
  "vitest/prefer-called-with",
376
374
  "vitest/prefer-comparison-matcher",
375
+ "vitest/prefer-describe-function-title",
377
376
  "vitest/prefer-expect-resolves",
378
377
  "vitest/prefer-lowercase-title",
379
378
  "vitest/prefer-mock-promise-shorthand",
@@ -1 +1 @@
1
- export declare const VERSION = "0.3.2";
1
+ export declare const VERSION = "0.3.3";
@@ -1 +1 @@
1
- export const VERSION = "0.3.2";
1
+ export const VERSION = "0.3.3";
@@ -966,12 +966,12 @@ export declare function importPluginJsonc(): Promise<{
966
966
  plugins?: undefined;
967
967
  } | {
968
968
  rules: {
969
- [x: string]: import("eslint").Linter.RuleEntry<any[]>;
969
+ [rule: string]: import("eslint").Linter.RuleEntry<any[]>;
970
970
  };
971
971
  })[];
972
972
  };
973
973
  rules: {
974
- [key: string]: import("eslint-plugin-jsonc/types").RuleModule;
974
+ [key: string]: import("eslint-plugin-jsonc/types").RuleModule<unknown[]>;
975
975
  };
976
976
  parseForESLint: typeof import("jsonc-eslint-parser").parseForESLint;
977
977
  parseJSON: typeof import("jsonc-eslint-parser").parseJSON;
@@ -1331,12 +1331,12 @@ export declare function importJsoncLibs(): Promise<{
1331
1331
  plugins?: undefined;
1332
1332
  } | {
1333
1333
  rules: {
1334
- [x: string]: import("eslint").Linter.RuleEntry<any[]>;
1334
+ [rule: string]: import("eslint").Linter.RuleEntry<any[]>;
1335
1335
  };
1336
1336
  })[];
1337
1337
  };
1338
1338
  rules: {
1339
- [key: string]: import("eslint-plugin-jsonc/types").RuleModule;
1339
+ [key: string]: import("eslint-plugin-jsonc/types").RuleModule<unknown[]>;
1340
1340
  };
1341
1341
  parseForESLint: typeof import("jsonc-eslint-parser").parseForESLint;
1342
1342
  parseJSON: typeof import("jsonc-eslint-parser").parseJSON;
@@ -8,7 +8,6 @@ export { default as pluginEslintComments } from "@eslint-community/eslint-plugin
8
8
  export { default as pluginTs } from "@typescript-eslint/eslint-plugin";
9
9
  export * as parserTs from "@typescript-eslint/parser";
10
10
  export { default as pluginAntfu } from "eslint-plugin-antfu";
11
- // @ts-expect-error - bad types mr jones
12
11
  export * as pluginImport from "eslint-plugin-import-x";
13
12
  export { default as pluginN } from "eslint-plugin-n";
14
13
  export { default as pluginPerfectionist } from "eslint-plugin-perfectionist";