@breadstone-infrastructure/eslint-config 0.0.157 → 0.0.160
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 +6 -6
- package/Configs/Config2.d.ts +12 -12
- package/Configs/Presets/Angular2.d.ts +1 -1
- package/Configs/Presets/Html2.d.ts +1 -1
- package/Configs/Presets/Import2.d.ts +1 -1
- package/Configs/Presets/Javascript2.d.ts +1 -1
- package/Configs/Presets/Json2.d.ts +1 -1
- package/Configs/Presets/Lit2.d.ts +1 -1
- package/Configs/Presets/Markdown2.d.ts +1 -1
- package/Configs/Presets/Stylistic2.d.ts +1 -1
- package/Configs/Presets/Typescript.d.ts +1 -1
- package/Configs/Presets/Typescript2.d.ts +1 -1
- package/package.json +7 -7
package/Configs/Config.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
export declare const standaloneConfigs: {
|
|
9
9
|
base: import("../Utils/Config.js").Config;
|
|
10
|
-
typescript: import("
|
|
10
|
+
typescript: import("eslint/config").Config[];
|
|
11
11
|
stylistic: import("../Utils/Config.js").Config;
|
|
12
12
|
lit: import("../Utils/Config.js").Config;
|
|
13
13
|
angular: import("../Utils/Config.js").Config;
|
|
@@ -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:
|
|
33
|
+
base: import("eslint/config").Config[];
|
|
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:
|
|
43
|
+
lit: import("eslint/config").Config[];
|
|
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:
|
|
52
|
+
angular: import("eslint/config").Config[];
|
|
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:
|
|
62
|
+
vue: import("eslint/config").Config[];
|
|
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:
|
|
72
|
+
react: import("eslint/config").Config[];
|
|
73
73
|
};
|
|
74
74
|
//# sourceMappingURL=Config.d.ts.map
|
package/Configs/Config2.d.ts
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare const standaloneConfigs2: {
|
|
8
|
-
readonly javascript: import("
|
|
9
|
-
readonly markdown: import("
|
|
10
|
-
readonly json: import("
|
|
11
|
-
readonly stylistic: import("
|
|
12
|
-
readonly typescript: import("
|
|
13
|
-
readonly lit: import("
|
|
14
|
-
readonly angular: import("
|
|
8
|
+
readonly javascript: import("eslint/config").Config[];
|
|
9
|
+
readonly markdown: import("eslint/config").Config[];
|
|
10
|
+
readonly json: import("eslint/config").Config[];
|
|
11
|
+
readonly stylistic: import("eslint/config").Config[];
|
|
12
|
+
readonly typescript: import("eslint/config").Config[];
|
|
13
|
+
readonly lit: import("eslint/config").Config[];
|
|
14
|
+
readonly angular: import("eslint/config").Config[];
|
|
15
15
|
};
|
|
16
16
|
/**
|
|
17
17
|
* The configurations
|
|
@@ -28,7 +28,7 @@ export declare const configs2: {
|
|
|
28
28
|
* - Contains all rules of the json configuration
|
|
29
29
|
* - Contains all rules of the markdown configuration
|
|
30
30
|
*/
|
|
31
|
-
base: import("
|
|
31
|
+
base: import("eslint/config").Config[];
|
|
32
32
|
/**
|
|
33
33
|
* The base configurations
|
|
34
34
|
* - Contains all rules of the javascript configuration
|
|
@@ -38,7 +38,7 @@ export declare const configs2: {
|
|
|
38
38
|
* - Contains all rules of the markdown configuration
|
|
39
39
|
* - Contains all rules of the lit configuration
|
|
40
40
|
*/
|
|
41
|
-
lit: import("
|
|
41
|
+
lit: import("eslint/config").Config[];
|
|
42
42
|
/**
|
|
43
43
|
* The angular configurations
|
|
44
44
|
* - Contains all rules of the javascript configuration
|
|
@@ -48,7 +48,7 @@ export declare const configs2: {
|
|
|
48
48
|
* - Contains all rules of the markdown configuration
|
|
49
49
|
* - Contains all rules of the angular configuration
|
|
50
50
|
*/
|
|
51
|
-
angular: import("
|
|
51
|
+
angular: import("eslint/config").Config[];
|
|
52
52
|
/**
|
|
53
53
|
* The vue configurations
|
|
54
54
|
* - Contains all rules of the javascript configuration
|
|
@@ -58,7 +58,7 @@ export declare const configs2: {
|
|
|
58
58
|
* - Contains all rules of the markdown configuration
|
|
59
59
|
* - Contains all rules of the vue configuration
|
|
60
60
|
*/
|
|
61
|
-
vue: import("
|
|
61
|
+
vue: import("eslint/config").Config[];
|
|
62
62
|
/**
|
|
63
63
|
* The react configurations
|
|
64
64
|
* - Contains all rules of the javascript configuration
|
|
@@ -68,6 +68,6 @@ export declare const configs2: {
|
|
|
68
68
|
* - Contains all rules of the markdown configuration
|
|
69
69
|
* - Contains all rules of the react configuration
|
|
70
70
|
*/
|
|
71
|
-
react: import("
|
|
71
|
+
react: import("eslint/config").Config[];
|
|
72
72
|
};
|
|
73
73
|
//# sourceMappingURL=Config2.d.ts.map
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
6
|
-
declare const _default: import("
|
|
6
|
+
declare const _default: import("eslint/config").Config[];
|
|
7
7
|
export default _default;
|
|
8
8
|
//# sourceMappingURL=Angular2.d.ts.map
|
|
@@ -51,6 +51,6 @@
|
|
|
51
51
|
*
|
|
52
52
|
* @public
|
|
53
53
|
*/
|
|
54
|
-
declare const _default: import("
|
|
54
|
+
declare const _default: import("eslint/config").Config[];
|
|
55
55
|
export default _default;
|
|
56
56
|
//# sourceMappingURL=Html2.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @public
|
|
3
3
|
*/
|
|
4
|
-
declare const _default: import("
|
|
4
|
+
declare const _default: import("eslint/config").Config[];
|
|
5
5
|
export default _default;
|
|
6
6
|
//# sourceMappingURL=Import2.d.ts.map
|
|
@@ -209,6 +209,6 @@
|
|
|
209
209
|
* | yoda | Require or disallow “Yoda” conditions | https://eslint.org/docs/latest/rules/yoda |
|
|
210
210
|
* | unicode-bom | Require or disallow Unicode byte order mark (BOM) | https://eslint.org/docs/latest/rules/unicode-bom |
|
|
211
211
|
*/
|
|
212
|
-
declare const _default: import("
|
|
212
|
+
declare const _default: import("eslint/config").Config[];
|
|
213
213
|
export default _default;
|
|
214
214
|
//# sourceMappingURL=Javascript2.d.ts.map
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
6
|
-
declare const _default: import("
|
|
6
|
+
declare const _default: import("eslint/config").Config[];
|
|
7
7
|
export default _default;
|
|
8
8
|
//# sourceMappingURL=Json2.d.ts.map
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
6
|
-
declare const _default: import("
|
|
6
|
+
declare const _default: import("eslint/config").Config[];
|
|
7
7
|
export default _default;
|
|
8
8
|
//# sourceMappingURL=Lit2.d.ts.map
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
6
|
-
declare const _default: import("
|
|
6
|
+
declare const _default: import("eslint/config").Config[];
|
|
7
7
|
export default _default;
|
|
8
8
|
//# sourceMappingURL=Markdown2.d.ts.map
|
|
@@ -70,6 +70,6 @@
|
|
|
70
70
|
*
|
|
71
71
|
* @public
|
|
72
72
|
*/
|
|
73
|
-
declare const _default: import("
|
|
73
|
+
declare const _default: import("eslint/config").Config[];
|
|
74
74
|
export default _default;
|
|
75
75
|
//# sourceMappingURL=Stylistic2.d.ts.map
|
|
@@ -142,6 +142,6 @@
|
|
|
142
142
|
*
|
|
143
143
|
* @public
|
|
144
144
|
*/
|
|
145
|
-
declare const _default: import("
|
|
145
|
+
declare const _default: import("eslint/config").Config[];
|
|
146
146
|
export default _default;
|
|
147
147
|
//# sourceMappingURL=Typescript.d.ts.map
|
|
@@ -142,6 +142,6 @@
|
|
|
142
142
|
*
|
|
143
143
|
* @public
|
|
144
144
|
*/
|
|
145
|
-
declare const _default: import("
|
|
145
|
+
declare const _default: import("eslint/config").Config[];
|
|
146
146
|
export default _default;
|
|
147
147
|
//# sourceMappingURL=Typescript2.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.160",
|
|
4
4
|
"description": "Shared eslint configuration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -16,18 +16,18 @@
|
|
|
16
16
|
"@angular-eslint/eslint-plugin": "^20.4.0",
|
|
17
17
|
"@angular-eslint/eslint-plugin-template": "^20.4.0",
|
|
18
18
|
"@angular-eslint/template-parser": "^20.4.0",
|
|
19
|
-
"@eslint/js": "^9.
|
|
19
|
+
"@eslint/js": "^9.38.0",
|
|
20
20
|
"@eslint/json": "^0.13.2",
|
|
21
|
-
"@eslint/markdown": "^7.4.
|
|
21
|
+
"@eslint/markdown": "^7.4.1",
|
|
22
22
|
"@html-eslint/eslint-plugin": "^0.47.0",
|
|
23
23
|
"@html-eslint/parser": "^0.47.0",
|
|
24
|
-
"@stylistic/eslint-plugin": "^5.
|
|
25
|
-
"@typescript-eslint/eslint-plugin": "^8.46.
|
|
26
|
-
"@typescript-eslint/parser": "^8.46.
|
|
24
|
+
"@stylistic/eslint-plugin": "^5.5.0",
|
|
25
|
+
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
|
26
|
+
"@typescript-eslint/parser": "^8.46.2",
|
|
27
27
|
"confusing-browser-globals": "^1.0.11",
|
|
28
28
|
"eslint-plugin-import": "^2.32.0",
|
|
29
29
|
"eslint-plugin-lit": "^2.1.1",
|
|
30
30
|
"globals": "^16.4.0",
|
|
31
|
-
"typescript-eslint": "^8.46.
|
|
31
|
+
"typescript-eslint": "^8.46.2"
|
|
32
32
|
}
|
|
33
33
|
}
|