@softwareventures/eslint-config 8.0.0-alpha.3 → 8.0.0-alpha.5
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 +32 -24
- package/.eslintignore +0 -6
- package/.husky/common.sh +0 -8
- package/.husky/pre-commit +0 -5
- package/.prettierignore +0 -6
- package/tsconfig.test.json +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softwareventures/eslint-config",
|
|
3
|
-
"version": "8.0.0-alpha.
|
|
3
|
+
"version": "8.0.0-alpha.5",
|
|
4
4
|
"description": "Standard eslint configuration for Software Ventures Limited",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"TypeScript",
|
|
@@ -13,15 +13,15 @@
|
|
|
13
13
|
"repository": "github:softwareventures/eslint-config",
|
|
14
14
|
"license": "ISC",
|
|
15
15
|
"scripts": {
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
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": {
|
|
24
|
-
"node": "^18 || >=
|
|
24
|
+
"node": "^18 || ^20 || >=22"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"tslib": "^2.3.1"
|
|
@@ -32,33 +32,40 @@
|
|
|
32
32
|
"eslint": "^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
|
-
"@
|
|
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
|
-
"@softwareventures/semantic-release-config": "
|
|
44
|
-
"@softwareventures/tsconfig": "8.
|
|
45
|
-
"@types/eslint": "8.56.
|
|
46
|
-
"@
|
|
47
|
-
"@typescript-eslint/
|
|
46
|
+
"@softwareventures/semantic-release-config": "5.0.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.
|
|
54
|
-
"eslint-plugin-jsdoc": "
|
|
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": "
|
|
57
|
-
"husky": "9.
|
|
58
|
-
"
|
|
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",
|
|
66
|
+
"semantic-release-pinst": "1.0.4",
|
|
60
67
|
"ts-node": "10.9.2",
|
|
61
|
-
"typescript": "5.
|
|
68
|
+
"typescript": "5.6.2"
|
|
62
69
|
},
|
|
63
70
|
"eslintConfig": {
|
|
64
71
|
"root": true,
|
|
@@ -67,7 +74,7 @@
|
|
|
67
74
|
"prettier": "@softwareventures/prettier-config",
|
|
68
75
|
"config": {
|
|
69
76
|
"commitizen": {
|
|
70
|
-
"path": "
|
|
77
|
+
"path": "@commitlint/cz-commitlint"
|
|
71
78
|
}
|
|
72
79
|
},
|
|
73
80
|
"ava": {
|
|
@@ -80,5 +87,6 @@
|
|
|
80
87
|
},
|
|
81
88
|
"release": {
|
|
82
89
|
"extends": "@softwareventures/semantic-release-config"
|
|
83
|
-
}
|
|
90
|
+
},
|
|
91
|
+
"packageManager": "yarn@4.4.1"
|
|
84
92
|
}
|
package/.eslintignore
DELETED
package/.husky/common.sh
DELETED
package/.husky/pre-commit
DELETED
package/.prettierignore
DELETED