@softwareventures/eslint-config 7.6.0 → 7.8.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softwareventures/eslint-config",
3
- "version": "7.6.0",
3
+ "version": "7.8.0",
4
4
  "description": "Standard eslint configuration for Software Ventures Limited",
5
5
  "keywords": [
6
6
  "TypeScript",
@@ -13,11 +13,11 @@
13
13
  "repository": "github:softwareventures/eslint-config",
14
14
  "license": "ISC",
15
15
  "scripts": {
16
- "fix": "tsc --noEmit && eslint . --fix && prettier --write .",
17
- "lint": "tsc --noEmit && eslint . && prettier --check .",
18
- "pre-commit": "precise-commits",
19
- "prepare": "husky install && tsc",
20
- "semantic-release": "semantic-release",
16
+ "commit": "cz",
17
+ "fix": "tsc && eslint . --fix && prettier --write .",
18
+ "postinstall": "husky",
19
+ "lint": "tsc && eslint . && prettier --check .",
20
+ "prepack": "tsc",
21
21
  "test": "ava"
22
22
  },
23
23
  "engines": {
@@ -32,33 +32,39 @@
32
32
  "eslint": "^7.0.0 || ^8.0.0",
33
33
  "eslint-config-prettier": "^8.3.0 || ^9.0.0",
34
34
  "eslint-plugin-import": "^2.25.2",
35
- "eslint-plugin-jsdoc": "^37.0.3 || ^38.0.0 || ^39.0.0 || ^40.0.0 || ^41.0.0 || ^42.0.0 || ^43.0.0 || ^44.0.0 || ^45.0.0 || ^46.0.0 || ^47.0.0 || ^48.0.0",
35
+ "eslint-plugin-jsdoc": "^37.0.3 || ^38.0.0 || ^39.0.0 || ^40.0.0 || ^41.0.0 || ^42.0.0 || ^43.0.0 || ^44.0.0 || ^45.0.0 || ^46.0.0 || ^47.0.0 || ^48.0.0 || ^50.0.0",
36
36
  "eslint-plugin-prefer-arrow": "^1.2.3",
37
- "eslint-plugin-sonarjs": "^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^0.14.0 || ^0.15.0 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0 || ^1.0.0",
37
+ "eslint-plugin-sonarjs": "^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^0.14.0 || ^0.15.0 || ^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0 || ^1.0.0 || ^2.0.0",
38
38
  "typescript": "^3.8.3 || ^4.0.0 || ^5.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@softwareventures/precise-commits": "4.0.12",
41
+ "@commitlint/cli": "19.4.1",
42
+ "@commitlint/config-conventional": "19.4.1",
43
+ "@commitlint/cz-commitlint": "19.4.0",
44
+ "@softwareventures/precise-commits": "4.0.15",
42
45
  "@softwareventures/prettier-config": "4.0.0",
43
46
  "@softwareventures/semantic-release-config": "4.1.0",
44
- "@softwareventures/tsconfig": "8.0.0",
45
- "@types/eslint": "8.56.10",
46
- "@typescript-eslint/eslint-plugin": "7.9.0",
47
- "@typescript-eslint/parser": "7.9.0",
47
+ "@softwareventures/tsconfig": "8.1.0",
48
+ "@types/eslint": "8.56.12",
49
+ "@types/node": "18.19.50",
50
+ "@typescript-eslint/eslint-plugin": "7.18.0",
51
+ "@typescript-eslint/parser": "7.18.0",
48
52
  "ava": "6.1.3",
53
+ "commitizen": "4.3.0",
49
54
  "conventional-changelog-conventionalcommits": "7.0.2",
50
- "cz-conventional-changelog": "3.3.0",
51
55
  "eslint": "8.57.0",
52
56
  "eslint-config-prettier": "9.1.0",
53
- "eslint-plugin-import": "2.29.1",
54
- "eslint-plugin-jsdoc": "48.2.5",
57
+ "eslint-plugin-import": "2.30.0",
58
+ "eslint-plugin-jsdoc": "50.2.2",
55
59
  "eslint-plugin-prefer-arrow": "1.2.3",
56
- "eslint-plugin-sonarjs": "1.0.3",
57
- "husky": "9.0.11",
58
- "prettier": "3.2.5",
60
+ "eslint-plugin-sonarjs": "2.0.2",
61
+ "husky": "9.1.5",
62
+ "inquirer": "9.3.6",
63
+ "pinst": "3.0.0",
64
+ "prettier": "3.3.3",
59
65
  "semantic-release": "22.0.12",
60
66
  "ts-node": "10.9.2",
61
- "typescript": "5.4.5"
67
+ "typescript": "5.6.2"
62
68
  },
63
69
  "eslintConfig": {
64
70
  "root": true,
@@ -67,7 +73,7 @@
67
73
  "prettier": "@softwareventures/prettier-config",
68
74
  "config": {
69
75
  "commitizen": {
70
- "path": "./node_modules/cz-conventional-changelog"
76
+ "path": "@commitlint/cz-commitlint"
71
77
  }
72
78
  },
73
79
  "ava": {
@@ -80,5 +86,6 @@
80
86
  },
81
87
  "release": {
82
88
  "extends": "@softwareventures/semantic-release-config"
83
- }
89
+ },
90
+ "packageManager": "yarn@4.4.1"
84
91
  }
package/.eslintignore DELETED
@@ -1,6 +0,0 @@
1
- .idea
2
- node_modules
3
- *.js
4
- *.d.ts
5
- *.js.map
6
- !/types/*.d.ts
package/.husky/common.sh DELETED
@@ -1,8 +0,0 @@
1
- command_exists () {
2
- command -v "$1" >/dev/null 2>&1
3
- }
4
-
5
- # Workaround for Windows 10, Git Bash and Yarn, https://typicode.github.io/husky/#/?id=yarn-on-windows
6
- if command_exists winpty && test -t 1; then
7
- exec < /dev/tty
8
- fi
package/.husky/pre-commit DELETED
@@ -1,5 +0,0 @@
1
- #!/bin/sh
2
- . "$(dirname "$0")/_/husky.sh"
3
- . "$(dirname "$0")/common.sh"
4
-
5
- yarn pre-commit
package/.prettierignore DELETED
@@ -1,6 +0,0 @@
1
- .idea
2
- node_modules
3
- *.js
4
- *.d.ts
5
- *.js.map
6
- !/types/*.d.ts
@@ -1,7 +0,0 @@
1
- {
2
- "extends": ".",
3
- "compilerOptions": {
4
- "noEmit": true
5
- },
6
- "exclude": []
7
- }