@breadstone-infrastructure/eslint-config 0.0.49 → 0.0.51
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/Configs/Config.d.ts +5 -5
- package/package.json +6 -6
package/Configs/Config.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export declare const configs: {
|
|
|
30
30
|
* - Contains all rules of the stylistic configuration
|
|
31
31
|
* - Contains all rules of the import configuration
|
|
32
32
|
*/
|
|
33
|
-
base: (import("eslint").
|
|
33
|
+
base: (import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
|
|
34
34
|
/**
|
|
35
35
|
* The lit configurations
|
|
36
36
|
* - Contains all rules of the base configuration
|
|
@@ -40,7 +40,7 @@ export declare const configs: {
|
|
|
40
40
|
* - Contains all rules of the import configuration
|
|
41
41
|
* - Contains all rules of the html configuration
|
|
42
42
|
*/
|
|
43
|
-
lit: (import("eslint").
|
|
43
|
+
lit: (import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
|
|
44
44
|
/**
|
|
45
45
|
* The angular configurations
|
|
46
46
|
* - Contains all rules of the base configuration
|
|
@@ -49,7 +49,7 @@ export declare const configs: {
|
|
|
49
49
|
* - Contains all rules of the angular configuration
|
|
50
50
|
* - Contains all rules of the import configuration
|
|
51
51
|
*/
|
|
52
|
-
angular: (import("eslint").
|
|
52
|
+
angular: (import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
|
|
53
53
|
/**
|
|
54
54
|
* The vue configurations
|
|
55
55
|
* - Contains all rules of the base configuration
|
|
@@ -59,7 +59,7 @@ export declare const configs: {
|
|
|
59
59
|
* - Contains all rules of the import configuration
|
|
60
60
|
* - Contains all rules of the html configuration
|
|
61
61
|
*/
|
|
62
|
-
vue: (import("eslint").
|
|
62
|
+
vue: (import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
|
|
63
63
|
/**
|
|
64
64
|
* The react configurations
|
|
65
65
|
* - Contains all rules of the base configuration
|
|
@@ -69,6 +69,6 @@ export declare const configs: {
|
|
|
69
69
|
* - Contains all rules of the import configuration
|
|
70
70
|
* - Contains all rules of the html configuration
|
|
71
71
|
*/
|
|
72
|
-
react: (import("eslint").
|
|
72
|
+
react: (import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
|
|
73
73
|
};
|
|
74
74
|
//# sourceMappingURL=Config.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone-infrastructure/eslint-config",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.51",
|
|
4
4
|
"description": "Shared eslint configuration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"@angular-eslint/template-parser": "^20.1.1",
|
|
19
19
|
"@eslint/js": "^9.29.0",
|
|
20
20
|
"@eslint/json": "^0.12.0",
|
|
21
|
-
"@eslint/markdown": "^6.
|
|
22
|
-
"@html-eslint/eslint-plugin": "^0.
|
|
23
|
-
"@html-eslint/parser": "^0.
|
|
24
|
-
"@stylistic/eslint-plugin": "^
|
|
21
|
+
"@eslint/markdown": "^6.6.0",
|
|
22
|
+
"@html-eslint/eslint-plugin": "^0.42.0",
|
|
23
|
+
"@html-eslint/parser": "^0.42.0",
|
|
24
|
+
"@stylistic/eslint-plugin": "^5.0.0",
|
|
25
25
|
"@typescript-eslint/eslint-plugin": "^8.34.1",
|
|
26
26
|
"@typescript-eslint/parser": "^8.34.1",
|
|
27
27
|
"confusing-browser-globals": "^1.0.11",
|
|
28
|
-
"eslint-plugin-import": "^2.
|
|
28
|
+
"eslint-plugin-import": "^2.32.0",
|
|
29
29
|
"eslint-plugin-lit": "^2.1.1",
|
|
30
30
|
"globals": "^16.2.0",
|
|
31
31
|
"typescript-eslint": "^8.34.1"
|