eslint-config-gits 3.0.0 → 3.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 +17 -0
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [3.0.1](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v3.0.0...v3.0.1) (2023-09-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Ignore types for object deconstructin ([ca7229f](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/ca7229fa5e46c92d6d9bd55cf14521340d233e55))
7
+
1
8
  # [3.0.0](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v2.0.1...v3.0.0) (2023-04-19)
2
9
 
3
10
 
@@ -16,3 +23,13 @@
16
23
  ### Bug Fixes
17
24
 
18
25
  * Install typescript dependencies ([52af0c3](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/52af0c3434bc5bc2c2764ef73800641d7ddfb976))
26
+
27
+ ## 2.0.0
28
+
29
+ ### Features
30
+
31
+ * Type definition for variables
32
+
33
+ ### BREAKING CHANGEs
34
+
35
+ * All variables must be typed
package/index.js CHANGED
@@ -38,7 +38,7 @@ module.exports = {
38
38
  arrayDestructuring: false,
39
39
  arrowParameter: false,
40
40
  memberVariableDeclaration: true,
41
- objectDestructuring: true,
41
+ objectDestructuring: false,
42
42
  parameter: false,
43
43
  propertyDeclaration: true,
44
44
  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.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.js",