@msobiecki/eslint-config 8.39.0 → 9.0.0

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,22 @@
1
+ # [9.0.0](https://github.com/msobiecki/eslint-config/compare/v8.40.0...v9.0.0) (2025-10-18)
2
+
3
+
4
+ ### chore
5
+
6
+ * **eslint:** update to ESLint 9 and migrate to flat config ([e0be675](https://github.com/msobiecki/eslint-config/commit/e0be67505419e761ea645b6aff484e495089d6ad))
7
+
8
+
9
+ ### BREAKING CHANGES
10
+
11
+ * **eslint:** The ESLint configuration has been migrated to the new flat config.
12
+
13
+ # [8.40.0](https://github.com/msobiecki/eslint-config/compare/v8.39.0...v8.40.0) (2025-10-18)
14
+
15
+
16
+ ### Features
17
+
18
+ * new breaking base ([bb815f3](https://github.com/msobiecki/eslint-config/commit/bb815f3cb572cb541ce96705112d72753d6d8dea))
19
+
1
20
  # [8.39.0](https://github.com/msobiecki/eslint-config/compare/v8.38.2...v8.39.0) (2025-10-18)
2
21
 
3
22
 
package/README.md CHANGED
@@ -24,7 +24,7 @@ npm install --save-dev eslint prettier typescript
24
24
 
25
25
  ## Usage
26
26
 
27
- To use this ESLint configuration, you need to extend it in your project's `eslint.config.js` file:
27
+ To use this ESLint Flat Config configuration, you need to extend it in your project's `eslint.config.js` file:
28
28
 
29
29
  ### base javascript/typescript configuration
30
30
 
@@ -38,7 +38,6 @@ export default defineConfig([
38
38
  ]);
39
39
  ```
40
40
 
41
-
42
41
  ### best practice configuration
43
42
 
44
43
  ```javascript
@@ -111,7 +110,6 @@ export default defineConfig([
111
110
  ]);
112
111
  ```
113
112
 
114
-
115
113
  ### storybook configuration
116
114
 
117
115
  ```javascript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@msobiecki/eslint-config",
3
- "version": "8.39.0",
3
+ "version": "9.0.0",
4
4
  "private": false,
5
5
  "description": "An ESLint shareable config for JavaScript/TypeScript ecosystem's.",
6
6
  "keywords": [
@@ -56,7 +56,8 @@
56
56
  "jest": "^30.2.0",
57
57
  "lint-staged": "^16.2.4",
58
58
  "prettier": "^3.6.2",
59
- "semantic-release": "^25.0.0"
59
+ "semantic-release": "^25.0.0",
60
+ "typescript": "^5.9.3"
60
61
  },
61
62
  "peerDependencies": {
62
63
  "eslint": "^9.0.0",