eslint-config-gits 5.1.0 → 6.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +1 -1
  3. package/package.json +26 -17
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+ ## [6.0.1](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v6.0.0...v6.0.1) (2026-04-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Require @eslint/js ([b7edaf8](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/b7edaf8941d843dcf84185adb48425b5b77274a0))
7
+
8
+ # [6.0.0](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.1.0...v6.0.0) (2026-04-02)
9
+
10
+
11
+ ### Features
12
+
13
+ * Eslint 10 ([762ba39](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/762ba3963784d33a1076963d62447c156151f6d4))
14
+
15
+
16
+ ### BREAKING CHANGES
17
+
18
+ * Requires eslint 10
19
+
1
20
  # [5.1.0](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.0.41...v5.1.0) (2025-10-14)
2
21
 
3
22
 
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Custom ESLint Preset
1
+ # Custom GITS ESLint Preset
2
2
 
3
3
  This ESLint-Config provides commonly used configuration for eslint for all our projects, using:
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-gits",
3
- "version": "5.1.0",
3
+ "version": "6.0.1",
4
4
  "description": "EsLint Preset for Geenen IT-Systeme",
5
5
  "repository": "https://gitlab.com/geenen-it-systeme/eslint-preset",
6
6
  "main": "index.mjs",
@@ -14,32 +14,41 @@
14
14
  "author": "",
15
15
  "license": "ISC",
16
16
  "peerDependencies": {
17
- "@eslint/compat": "^1.3.1",
17
+ "@eslint/compat": "^2.0.0",
18
+ "@eslint/js": "10.0.0",
18
19
  "@typescript-eslint/parser": "^8.38.0",
19
- "eslint": "^9.32.0",
20
+ "eslint": "^10.0.0",
20
21
  "eslint-plugin-prettier": "^5.5.3",
21
22
  "eslint-plugin-react": "^7.37.5",
22
23
  "eslint-plugin-react-hooks": "^7.0.0",
23
- "globals": "^16.3.0",
24
+ "globals": "^17.0.0",
24
25
  "prettier": "^3.6.2",
25
26
  "typescript-eslint": "^8.38.0"
26
27
  },
27
28
  "devDependencies": {
28
- "@eslint/compat": "1.4.0",
29
- "@eslint/eslintrc": "3.3.1",
30
- "@eslint/js": "9.37.0",
29
+ "@eslint/compat": "2.0.3",
30
+ "@eslint/eslintrc": "3.3.5",
31
+ "@eslint/js": "10.0.1",
31
32
  "@semantic-release/changelog": "6.0.3",
32
33
  "@semantic-release/git": "10.0.1",
33
- "@semantic-release/gitlab": "13.2.9",
34
- "@typescript-eslint/eslint-plugin": "8.46.1",
35
- "@typescript-eslint/parser": "8.46.1",
36
- "eslint": "9.37.0",
37
- "eslint-plugin-prettier": "5.5.4",
34
+ "@semantic-release/gitlab": "13.3.2",
35
+ "@typescript-eslint/eslint-plugin": "8.58.0",
36
+ "@typescript-eslint/parser": "8.58.0",
37
+ "eslint": "10.0.0",
38
+ "eslint-plugin-prettier": "5.5.5",
38
39
  "eslint-plugin-react": "7.37.5",
39
- "eslint-plugin-react-hooks": "7.0.0",
40
- "globals": "16.4.0",
41
- "prettier": "3.6.2",
42
- "semantic-release": "24.2.9",
43
- "typescript-eslint": "8.46.1"
40
+ "eslint-plugin-react-hooks": "7.0.1",
41
+ "globals": "17.4.0",
42
+ "prettier": "3.8.1",
43
+ "semantic-release": "25.0.3",
44
+ "typescript-eslint": "8.58.0"
45
+ },
46
+ "overrides": {
47
+ "eslint-plugin-react": {
48
+ "eslint": ">=9"
49
+ },
50
+ "eslint-plugin-react-hooks": {
51
+ "eslint": ">=9"
52
+ }
44
53
  }
45
54
  }