eslint-config-gits 5.0.22 → 5.0.24

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,17 @@
1
+ ## [5.0.24](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.0.23...v5.0.24) (2024-08-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Allow undefined in tests ([f9e0255](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/f9e02550eb7d3f795fbd6d5de858b0b61346c9f1))
7
+
8
+ ## [5.0.23](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.0.22...v5.0.23) (2024-08-22)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Enforce type def for class members ([2f5de39](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/2f5de39a6834a57968aa2c5a2a60dfa4db588f93))
14
+
1
15
  ## [5.0.22](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v5.0.21...v5.0.22) (2024-08-22)
2
16
 
3
17
 
package/index.mjs CHANGED
@@ -78,7 +78,9 @@ const plugin = {
78
78
  "@typescript-eslint/typedef": [
79
79
  "error",
80
80
  {
81
- "variableDeclaration": true
81
+ "variableDeclaration": true,
82
+ "propertyDeclaration": true,
83
+ "memberVariableDeclaration": true
82
84
  }
83
85
  ],
84
86
  '@typescript-eslint/explicit-function-return-type': 'error',
@@ -104,6 +106,7 @@ const plugin = {
104
106
  rules: {
105
107
  '@typescript-eslint/typedef': ['off'],
106
108
  '@typescript-eslint/explicit-function-return-type': ['off'],
109
+ 'no-undefined': ['off']
107
110
  }
108
111
  }
109
112
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-gits",
3
- "version": "5.0.22",
3
+ "version": "5.0.24",
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",