eslint-config-gits 6.1.1 → 7.0.2

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/.gitlab-ci.yml CHANGED
@@ -2,6 +2,11 @@ stages:
2
2
  - test
3
3
  - deploy
4
4
 
5
+ default:
6
+ tags:
7
+ - gits
8
+
9
+
5
10
  test:install:
6
11
  stage: test
7
12
  image: node:lts
package/CHANGELOG.md CHANGED
@@ -1,3 +1,36 @@
1
+ ## [7.0.2](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v7.0.1...v7.0.2) (2026-06-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @eslint-react/eslint-plugin to v5.9.3 ([3a43986](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/3a439863cce0af7eac2c652e5c8d425772a4d3e4))
7
+
8
+ ## [7.0.1](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v7.0.0...v7.0.1) (2026-06-24)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** pin dependencies ([c732e84](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/c732e840fad55da4d44a5bd54bf67a4bd90d29ca))
14
+ * **deps:** update dependency @eslint-react/eslint-plugin to v5.9.1 ([89cfb68](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/89cfb68275167c3db70c86df92fd031e40b71c32))
15
+ * **deps:** update dependency @eslint-react/eslint-plugin to v5.9.2 ([c41ebf9](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/c41ebf91b08646ac8e18c7d69a44efd6968e3bba))
16
+ * **deps:** update dependency globals to v17.7.0 ([dceeb79](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/dceeb797e15397e83fdd5b0a915b3974c41857f5))
17
+
18
+ # [7.0.0](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v6.1.1...v7.0.0) (2026-06-15)
19
+
20
+
21
+ * feat!: replace eslint-plugin-react with @eslint-react/eslint-plugin ([6205373](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/6205373ee621e9f9d326eb0a3e99e474b73741c1))
22
+
23
+
24
+ ### BREAKING CHANGES
25
+
26
+ * consumers must install @eslint-react/eslint-plugin as a peer
27
+ dependency instead of eslint-plugin-react. The stylistic rule
28
+ react/jsx-curly-brace-presence is removed (no @eslint-react equivalent; use
29
+ @stylistic/eslint-plugin if needed). The eslint-plugin-react eslint override is
30
+ no longer required and was dropped.
31
+
32
+ Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
33
+
1
34
  ## [6.1.1](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v6.1.0...v6.1.1) (2026-04-02)
2
35
 
3
36
 
package/README.md CHANGED
@@ -11,6 +11,11 @@ This ESLint-Config provides commonly used configuration for eslint for all our p
11
11
  npm install --save-dev eslint eslint-config-gits
12
12
  ```
13
13
 
14
+ All ESLint plugins, the parser and Prettier are bundled as dependencies of this
15
+ preset and get installed automatically — you only add `eslint-config-gits`
16
+ itself. `eslint` (^10) stays a peer dependency, so the consuming project
17
+ controls its ESLint version.
18
+
14
19
  ## Example configuration
15
20
 
16
21
  ```js
package/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import react from "eslint-plugin-react";
1
+ import react from "@eslint-react/eslint-plugin";
2
2
  import prettier from "eslint-plugin-prettier";
3
3
  import reactHooks from "eslint-plugin-react-hooks";
4
4
  import tsParser from "@typescript-eslint/parser";
@@ -32,7 +32,7 @@ const plugin = {
32
32
  configs: {
33
33
  recommended: [
34
34
  ...tsLintEsLint.configs.recommended,
35
- react.configs.flat.recommended,
35
+ react.configs.recommended,
36
36
  reactHooks.configs.flat.recommended,
37
37
  {
38
38
  rules,
@@ -69,7 +69,6 @@ const plugin = {
69
69
  ],
70
70
  // Already checked via arrow functions and variable definition
71
71
  '@typescript-eslint/explicit-function-return-type': ['off'],
72
- 'react/jsx-curly-brace-presence': ['error', {props: "never", children: "never"}],
73
72
  'arrow-body-style': ['error', 'as-needed']
74
73
  },
75
74
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-gits",
3
- "version": "6.1.1",
3
+ "version": "7.0.2",
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,36 +14,22 @@
14
14
  "author": "",
15
15
  "license": "ISC",
16
16
  "peerDependencies": {
17
- "@typescript-eslint/parser": "^8.38.0",
18
- "eslint": "^10.0.0",
19
- "eslint-plugin-prettier": "^5.5.3",
20
- "eslint-plugin-react": "^7.37.5",
21
- "eslint-plugin-react-hooks": "^7.0.0",
22
- "globals": "^17.0.0",
23
- "prettier": "^3.6.2",
24
- "typescript-eslint": "^8.38.0"
17
+ "eslint": "^10.0.0"
18
+ },
19
+ "dependencies": {
20
+ "@eslint-react/eslint-plugin": "5.9.3",
21
+ "@typescript-eslint/parser": "8.61.0",
22
+ "eslint-plugin-prettier": "5.5.6",
23
+ "eslint-plugin-react-hooks": "7.1.1",
24
+ "globals": "17.7.0",
25
+ "prettier": "3.8.4",
26
+ "typescript-eslint": "8.61.0"
25
27
  },
26
28
  "devDependencies": {
27
29
  "@semantic-release/changelog": "6.0.3",
28
30
  "@semantic-release/git": "10.0.1",
29
31
  "@semantic-release/gitlab": "13.3.2",
30
- "@typescript-eslint/eslint-plugin": "8.58.0",
31
- "@typescript-eslint/parser": "8.58.0",
32
- "eslint": "10.0.0",
33
- "eslint-plugin-prettier": "5.5.5",
34
- "eslint-plugin-react": "7.37.5",
35
- "eslint-plugin-react-hooks": "7.0.1",
36
- "globals": "17.4.0",
37
- "prettier": "3.8.1",
38
- "semantic-release": "25.0.3",
39
- "typescript-eslint": "8.58.0"
40
- },
41
- "overrides": {
42
- "eslint-plugin-react": {
43
- "eslint": ">=9"
44
- },
45
- "eslint-plugin-react-hooks": {
46
- "eslint": ">=9"
47
- }
32
+ "eslint": "10.5.0",
33
+ "semantic-release": "25.0.5"
48
34
  }
49
35
  }