@ethang/eslint-config 22.21.0 → 22.21.2

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.
@@ -1,4 +1,4 @@
1
- import type { config } from "typescript-eslint";
1
+ import { defineConfig } from "eslint/config";
2
2
 
3
- declare const _default: ReturnType<typeof config>;
3
+ declare const _default: Parameters<typeof defineConfig>;
4
4
  export default _default;
package/config.astro.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { config } from "typescript-eslint";
1
+ import { defineConfig } from "eslint/config";
2
2
 
3
- declare const _default: ReturnType<typeof config>;
3
+ declare const _default: Parameters<typeof defineConfig>;
4
4
  export default _default;
package/config.react.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { config } from "typescript-eslint";
1
+ import { defineConfig } from "eslint/config";
2
2
 
3
- declare const _default: ReturnType<typeof config>;
3
+ declare const _default: Parameters<typeof defineConfig>;
4
4
  export default _default;
package/config.solid.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { config } from "typescript-eslint";
1
+ import { defineConfig } from "eslint/config";
2
2
 
3
- declare const _default: ReturnType<typeof config>;
3
+ declare const _default: Parameters<typeof defineConfig>;
4
4
  export default _default;
@@ -1,4 +1,4 @@
1
- import type { config } from "typescript-eslint";
1
+ import { defineConfig } from "eslint/config";
2
2
 
3
- declare const _default: ReturnType<typeof config>;
3
+ declare const _default: Parameters<typeof defineConfig>;
4
4
  export default _default;
@@ -1,4 +1,4 @@
1
- import type { config } from "typescript-eslint";
1
+ import { defineConfig } from "eslint/config";
2
2
 
3
- declare const _default: (pathToIndex: string) => ReturnType<typeof config>;
3
+ declare const _default: (pathToIndex: string) => Parameters<typeof defineConfig>;
4
4
  export default _default;
@@ -1,4 +1,4 @@
1
- import type { config } from "typescript-eslint";
1
+ import { defineConfig } from "eslint/config";
2
2
 
3
- declare const _default: ReturnType<typeof config>;
3
+ declare const _default: Parameters<typeof defineConfig>;
4
4
  export default _default;
package/package.json CHANGED
@@ -59,7 +59,7 @@
59
59
  "url": "git+https://github.com/eglove/ethang-monorepo.git#master"
60
60
  },
61
61
  "type": "module",
62
- "version": "22.21.0",
62
+ "version": "22.21.2",
63
63
  "scripts": {
64
64
  "build": "bun build.ts && pnpm lint",
65
65
  "lint": "eslint . --fix --concurrency=auto && prettier src --write"