eslint-config-gits 3.0.0 → 3.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/index.js +2 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [3.0.2](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v3.0.1...v3.0.2) (2023-09-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Disable inferrable types ([433a2bf](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/433a2bf89b53a2c1d92275d4ad01e0132f3fa3f9))
7
+
8
+ ## [3.0.1](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v3.0.0...v3.0.1) (2023-09-12)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Ignore types for object deconstructin ([ca7229f](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/ca7229fa5e46c92d6d9bd55cf14521340d233e55))
14
+
1
15
  # [3.0.0](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v2.0.1...v3.0.0) (2023-04-19)
2
16
 
3
17
 
@@ -16,3 +30,13 @@
16
30
  ### Bug Fixes
17
31
 
18
32
  * Install typescript dependencies ([52af0c3](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/52af0c3434bc5bc2c2764ef73800641d7ddfb976))
33
+
34
+ ## 2.0.0
35
+
36
+ ### Features
37
+
38
+ * Type definition for variables
39
+
40
+ ### BREAKING CHANGEs
41
+
42
+ * All variables must be typed
package/index.js CHANGED
@@ -32,13 +32,14 @@ module.exports = {
32
32
  },
33
33
  ],
34
34
  '@typescript-eslint/explicit-function-return-type': 'off',
35
+ '@typescript-eslint/no-inferrable-types': 'off',
35
36
  '@typescript-eslint/typedef': [
36
37
  'error',
37
38
  {
38
39
  arrayDestructuring: false,
39
40
  arrowParameter: false,
40
41
  memberVariableDeclaration: true,
41
- objectDestructuring: true,
42
+ objectDestructuring: false,
42
43
  parameter: false,
43
44
  propertyDeclaration: true,
44
45
  variableDeclaration: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-gits",
3
- "version": "3.0.0",
3
+ "version": "3.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.js",