eslint-config-gits 4.0.3 → 5.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/index.js +1 -1
  3. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -1,3 +1,41 @@
1
+ # [5.0.0](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v4.1.0...v5.0.0) (2024-08-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Require eslint-plugin-react-hooks canary for eslint 9 ([35f6761](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/35f67610a461439a7f60dee9d5366afa15099d2a))
7
+ * Revert to eslint 8 ([4d07d1e](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/4d07d1e28f7131699a4b50423029c6af399d6750))
8
+ * Update package-lock.json to reflect eslint downgrade ([8676458](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/867645825253ff8aa3264e885489ff717fa68127))
9
+ * Update semantic release ([224753d](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/224753d60afb2bb38641b3dc8e93318e90793ca4))
10
+
11
+
12
+ ### Features
13
+
14
+ * Update eslint to 9 ([b6894c1](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/b6894c14835770bf7dc1e16775e943af9abc1b76))
15
+ * Upgrade release 24.x ([79f98a1](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/79f98a18badc2c72c52c568952b33daea994488d))
16
+
17
+
18
+ ### Reverts
19
+
20
+ * Revert "Upgrade eslint 9.x" ([8da0c94](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/8da0c94ae2134df60fa80f871b25fd532f137d8d))
21
+
22
+
23
+ ### BREAKING CHANGES
24
+
25
+ * Require eslint 9
26
+
27
+ # [4.1.0](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v4.0.3...v4.1.0) (2024-04-26)
28
+
29
+
30
+ ### Bug Fixes
31
+
32
+ * Update minor dependencies ([1af513c](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/1af513c0d11045c64886c2423c43a4a7fcf320b3))
33
+
34
+
35
+ ### Features
36
+
37
+ * Require typedef for function variables ([d901902](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/d9019029f537c9d79ab89ab381a35cfd030ae2ae))
38
+
1
39
  ## [4.0.3](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v4.0.2...v4.0.3) (2024-03-21)
2
40
 
3
41
 
package/index.js CHANGED
@@ -44,7 +44,7 @@ module.exports = {
44
44
  parameter: false,
45
45
  propertyDeclaration: true,
46
46
  variableDeclaration: true,
47
- variableDeclarationIgnoreFunction: true,
47
+ variableDeclarationIgnoreFunction: false,
48
48
  },
49
49
  ],
50
50
  '@typescript-eslint/no-unused-vars': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-gits",
3
- "version": "4.0.3",
3
+ "version": "5.0.0",
4
4
  "description": "EsLint preset for Geenen IT-Systeme",
5
5
  "repository": "https://gitlab.com/geenen-it-systeme/eslint-preset",
6
6
  "main": "index.js",
@@ -14,26 +14,26 @@
14
14
  "author": "",
15
15
  "license": "ISC",
16
16
  "peerDependencies": {
17
- "eslint": "^8",
17
+ "eslint": "^9",
18
18
  "eslint-plugin-prettier": "^5",
19
19
  "eslint-plugin-react": "^7",
20
- "eslint-plugin-react-hooks": "^4",
20
+ "eslint-plugin-react-hooks": "^5",
21
21
  "eslint-plugin-storybook": "^0",
22
22
  "prettier": "^3",
23
- "@typescript-eslint/eslint-plugin": "^7"
23
+ "@typescript-eslint/eslint-plugin": "^8"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@semantic-release/changelog": "^6.0.3",
27
27
  "@semantic-release/git": "^10.0.1",
28
- "@semantic-release/gitlab": "^13.0.3",
29
- "@typescript-eslint/eslint-plugin": "^7.3.1",
30
- "@typescript-eslint/parser": "^7.3.1",
31
- "eslint": "^8.57.0",
32
- "eslint-plugin-prettier": "^5.1.3",
33
- "eslint-plugin-react": "^7.34.1",
34
- "eslint-plugin-react-hooks": "^4.6.0",
28
+ "@semantic-release/gitlab": "^13.2.1",
29
+ "@typescript-eslint/eslint-plugin": "^8.2.0",
30
+ "@typescript-eslint/parser": "^8.2.0",
31
+ "eslint": "^9.9.0",
32
+ "eslint-plugin-prettier": "^5.2.1",
33
+ "eslint-plugin-react": "^7.35.0",
34
+ "eslint-plugin-react-hooks": "^5.1.0-rc-1d989965-20240821",
35
35
  "eslint-plugin-storybook": "^0.8.0",
36
- "prettier": "^3.2.5",
37
- "semantic-release": "^23.0.5"
36
+ "prettier": "^3.3.3",
37
+ "semantic-release": "^24.1.0"
38
38
  }
39
39
  }