Skip to content

Commit 96ca83c

Browse files
committed
chore: fix all new eslint errors
1 parent 8342c8a commit 96ca83c

File tree

7 files changed

+12
-4
lines changed

7 files changed

+12
-4
lines changed

@alias/commitlint/package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@
3434
},
3535
"license": "MIT",
3636
"dependencies": {
37-
"@commitlint/cli": "^11.0.0"
37+
"@commitlint/cli": "^11.0.0",
38+
"@commitlint/types": "^11.0.0"
3839
},
3940
"devDependencies": {
4041
"@commitlint/test": "^11.0.0",
41-
"@commitlint/utils": "^11.0.0"
42+
"@commitlint/utils": "^11.0.0",
43+
"execa": "^5.0.0"
4244
},
4345
"gitHead": "cb565dfcca3128380b9b3dc274aedbcae34ce5ca"
4446
}

@commitlint/cli/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"@commitlint/lint": "^11.0.0",
4848
"@commitlint/load": "^11.0.0",
4949
"@commitlint/read": "^11.0.0",
50+
"@commitlint/types": "^11.0.0",
5051
"get-stdin": "8.0.0",
5152
"lodash": "^4.17.19",
5253
"resolve-from": "5.0.0",

@commitlint/parse/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"@commitlint/utils": "^11.0.0"
3939
},
4040
"dependencies": {
41+
"@commitlint/types": "^11.0.0",
4142
"conventional-changelog-angular": "^5.0.11",
4243
"conventional-commits-parser": "^3.0.0"
4344
},

@commitlint/prompt/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
},
4242
"dependencies": {
4343
"@commitlint/load": "^11.0.0",
44+
"@commitlint/types": "^11.0.0",
4445
"chalk": "^4.0.0",
4546
"lodash": "^4.17.19",
4647
"throat": "^5.0.0",

@commitlint/read/package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,12 @@
3737
"@commitlint/test": "^11.0.0",
3838
"@commitlint/utils": "^11.0.0",
3939
"@types/fs-extra": "^9.0.1",
40-
"@types/git-raw-commits": "^2.0.0"
40+
"@types/git-raw-commits": "^2.0.0",
41+
"execa": "^5.0.0"
4142
},
4243
"dependencies": {
4344
"@commitlint/top-level": "^11.0.0",
45+
"@commitlint/types": "^11.0.0",
4446
"fs-extra": "^9.0.0",
4547
"git-raw-commits": "^2.0.0"
4648
},

@commitlint/types/src/format.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chalk from 'chalk';
1+
import type chalk from 'chalk';
22
import {QualifiedRules} from './load';
33
import {RuleConfigSeverity} from './rules';
44

@packages/test-environment/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"license": "MIT",
2929
"dependencies": {
3030
"@types/tmp": "^0.2.0",
31+
"jest-environment-node": "^26.6.2",
3132
"tmp": "0.2.1"
3233
},
3334
"gitHead": "71f0194f33943954a8dac1c458be47e5049717cd"

0 commit comments

Comments
 (0)