eslint-config-silverwind 86.0.3 → 87.0.1
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/.eslintrc.d.cts +5 -0
- package/dist/index.d.ts +59 -0
- package/dist/index.js +306 -151
- package/dist/index.json +2218 -1
- package/package.json +14 -6
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
// TODO: Maybe investigate https://github.com/eslint-types/eslint-define-config
|
|
2
|
+
declare module "@eslint-community/eslint-plugin-eslint-comments" {
|
|
3
|
+
import type {Eslint} from "eslint";
|
|
4
|
+
const plugin: Eslint.Plugin;
|
|
5
|
+
export = plugin;
|
|
6
|
+
}
|
|
7
|
+
declare module "@stylistic/eslint-plugin-js" {
|
|
8
|
+
import type {Eslint} from "eslint";
|
|
9
|
+
const plugin: Eslint.Plugin;
|
|
10
|
+
export = plugin;
|
|
11
|
+
}
|
|
12
|
+
declare module "@stylistic/eslint-plugin-jsx" {
|
|
13
|
+
import type {Eslint} from "eslint";
|
|
14
|
+
const plugin: Eslint.Plugin;
|
|
15
|
+
export = plugin;
|
|
16
|
+
}
|
|
17
|
+
declare module "typescript-eslint" {
|
|
18
|
+
import type {Eslint} from "eslint";
|
|
19
|
+
const plugin: Eslint.Plugin;
|
|
20
|
+
export = plugin;
|
|
21
|
+
}
|
|
22
|
+
declare module "eslint-plugin-array-func" {
|
|
23
|
+
import type {Eslint} from "eslint";
|
|
24
|
+
const plugin: Eslint.Plugin;
|
|
25
|
+
export = plugin;
|
|
26
|
+
}
|
|
27
|
+
declare module "eslint-plugin-sonarjs" {
|
|
28
|
+
import type {Eslint} from "eslint";
|
|
29
|
+
const plugin: Eslint.Plugin;
|
|
30
|
+
export = plugin;
|
|
31
|
+
}
|
|
32
|
+
declare module "eslint-plugin-import" {
|
|
33
|
+
import type {Eslint} from "eslint";
|
|
34
|
+
const plugin: Eslint.Plugin;
|
|
35
|
+
export = plugin;
|
|
36
|
+
}
|
|
37
|
+
declare module "eslint-plugin-no-use-extend-native" {
|
|
38
|
+
import type {Eslint} from "eslint";
|
|
39
|
+
const plugin: Eslint.Plugin;
|
|
40
|
+
export = plugin;
|
|
41
|
+
}
|
|
42
|
+
declare module "eslint-plugin-unicorn" {
|
|
43
|
+
import type {Eslint} from "eslint";
|
|
44
|
+
const plugin: Eslint.Plugin;
|
|
45
|
+
export = plugin;
|
|
46
|
+
}
|
|
47
|
+
declare module "eslint-plugin-vitest-globals" {
|
|
48
|
+
import type {Eslint} from "eslint";
|
|
49
|
+
const plugin: Eslint.Plugin;
|
|
50
|
+
export = plugin;
|
|
51
|
+
}
|
|
52
|
+
declare module "eslint-config-silverwind-react" {
|
|
53
|
+
const config: Record<string, any>;
|
|
54
|
+
export = config
|
|
55
|
+
}
|
|
56
|
+
declare module "eslint-config-silverwind-typescript" {
|
|
57
|
+
const config: Record<string, any>;
|
|
58
|
+
export = config
|
|
59
|
+
}
|