@breadstone-infrastructure/eslint-config 0.0.80 → 0.0.82

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,3 +1,26 @@
1
+ ## 0.0.81 (2025-07-30)
2
+
3
+ ### 🚀 Features
4
+
5
+ - update release version to 0.0.80 in package.json ([96a94fca93](https://github.com/RueDeRennes/mosaik/commit/96a94fca93))
6
+
7
+ ## 0.0.80 (2025-07-30)
8
+
9
+ This was a version bump only for eslint-config to align it with other projects, there were no code changes.
10
+
11
+ ## 0.0.79 (2025-07-30)
12
+
13
+ ### 🚀 Features
14
+
15
+ - update button components with new size tokens ([22d0cdd674](https://github.com/RueDeRennes/mosaik/commit/22d0cdd674))
16
+ - Implement SandboxProjectFactory and SandboxProjectTemplateEngine ([3300298aec](https://github.com/RueDeRennes/mosaik/commit/3300298aec))
17
+ - add YAML code generation and update chat mode configuration ([9fe1bb330c](https://github.com/RueDeRennes/mosaik/commit/9fe1bb330c))
18
+ - Enhance Landing and App View Components ([459cb772ed](https://github.com/RueDeRennes/mosaik/commit/459cb772ed))
19
+
20
+ ### 🩹 Fixes
21
+
22
+ - correct spelling of 'initialize' in various files and update related interfaces ([3c70f28918](https://github.com/RueDeRennes/mosaik/commit/3c70f28918))
23
+
1
24
  ## 0.0.78 (2025-07-20)
2
25
 
3
26
  ### 🚀 Features
@@ -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("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
33
+ base: (import("eslint").Linter.Config<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.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: (import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
43
+ lit: (import("eslint").Linter.Config<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.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: (import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
52
+ angular: (import("eslint").Linter.Config<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.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: (import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
62
+ vue: (import("eslint").Linter.Config<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.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: (import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config | import("eslint").Linter.Config<import("eslint").Linter.RulesRecord>)[];
72
+ react: (import("eslint").Linter.Config<import("eslint").Linter.RulesRecord> | import("@typescript-eslint/utils/ts-eslint").FlatConfig.Config)[];
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.80",
3
+ "version": "0.0.82",
4
4
  "description": "Shared eslint configuration",
5
5
  "license": "MIT",
6
6
  "author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
@@ -19,8 +19,8 @@
19
19
  "@eslint/js": "^9.32.0",
20
20
  "@eslint/json": "^0.13.1",
21
21
  "@eslint/markdown": "^7.1.0",
22
- "@html-eslint/eslint-plugin": "^0.43.1",
23
- "@html-eslint/parser": "^0.43.0",
22
+ "@html-eslint/eslint-plugin": "^0.44.0",
23
+ "@html-eslint/parser": "^0.44.0",
24
24
  "@stylistic/eslint-plugin": "^5.2.2",
25
25
  "@typescript-eslint/eslint-plugin": "^8.38.0",
26
26
  "@typescript-eslint/parser": "^8.38.0",