eslint-config-gits 1.3.1 → 2.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.
package/.releaserc.json CHANGED
@@ -5,16 +5,9 @@
5
5
  "plugins": [
6
6
  "@semantic-release/commit-analyzer",
7
7
  "@semantic-release/release-notes-generator",
8
+ "@semantic-release/changelog",
8
9
  "@semantic-release/gitlab",
9
10
  "@semantic-release/npm",
10
- [
11
- "@semantic-release/git",
12
- {
13
- "assets": [
14
- "package.json"
15
- ],
16
- "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
17
- }
18
- ]
11
+ "@semantic-release/git"
19
12
  ]
20
13
  }
package/CHANGELOG.md ADDED
@@ -0,0 +1,6 @@
1
+ ## [2.0.1](https://gitlab.com/geenen-it-systeme/eslint-preset/compare/v2.0.0...v2.0.1) (2023-04-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Install typescript dependencies ([52af0c3](https://gitlab.com/geenen-it-systeme/eslint-preset/commit/52af0c3434bc5bc2c2764ef73800641d7ddfb976))
package/README.md ADDED
@@ -0,0 +1,12 @@
1
+ # Custom ESLint Preset
2
+
3
+ This ESLint-Config provides commonly used configuration for eslint for all our projects, using:
4
+
5
+ - ESLint
6
+ - prettier
7
+
8
+ ## Installation
9
+
10
+ ```shell
11
+ npm install --save-dev eslint eslint-config-gits
12
+ ```
package/index.js CHANGED
@@ -31,7 +31,20 @@ module.exports = {
31
31
  "arrowParens": "avoid"
32
32
  }
33
33
  ],
34
- "@typescript-eslint/explicit-function-return-type": "off"
34
+ "@typescript-eslint/explicit-function-return-type": "off",
35
+ "@typescript-eslint/typedef": [
36
+ "error",
37
+ {
38
+ "arrayDestructuring": false,
39
+ "arrowParameter": false,
40
+ "memberVariableDeclaration": true,
41
+ "objectDestructuring": true,
42
+ "parameter": false,
43
+ "propertyDeclaration": true,
44
+ "variableDeclaration": true,
45
+ "variableDeclarationIgnoreFunction": true
46
+ }
47
+ ]
35
48
  },
36
49
  overrides: [
37
50
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-gits",
3
- "version": "1.3.1",
3
+ "version": "2.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",
@@ -22,8 +22,11 @@
22
22
  "prettier": "^2"
23
23
  },
24
24
  "devDependencies": {
25
+ "@semantic-release/changelog": "^6.0.3",
25
26
  "@semantic-release/git": "^10.0.1",
26
27
  "@semantic-release/gitlab": "^12.0.1",
28
+ "@typescript-eslint/eslint-plugin": "^5.59.0",
29
+ "@typescript-eslint/parser": "^5.59.0",
27
30
  "eslint": "^8.38.0",
28
31
  "eslint-plugin-prettier": "^4.2.1",
29
32
  "eslint-plugin-react": "^7.32.2",