Skip to content

Commit ace820c

Browse files
committed
chore: upgrade deps
1 parent abcb7ac commit ace820c

File tree

2 files changed

+21
-22
lines changed

2 files changed

+21
-22
lines changed

lib/rules/test-case-property-ordering.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ module.exports = {
6868
// current < lastChecked to catch unordered;
6969
// and lastChecked === -1 to catch extra properties before.
7070
if (
71-
current > -1 &&
71+
current !== -1 &&
7272
(current < lastChecked || lastChecked === -1)
7373
) {
7474
let orderMsg = order.filter((item) =>

package.json

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -50,41 +50,40 @@
5050
"statements": 99
5151
},
5252
"devDependencies": {
53-
"@commitlint/cli": "^19.2.2",
54-
"@commitlint/config-conventional": "^19.2.2",
53+
"@commitlint/cli": "^19.6.0",
54+
"@commitlint/config-conventional": "^19.6.0",
5555
"@eslint-community/eslint-plugin-eslint-comments": "^4.3.0",
5656
"@eslint/eslintrc": "^3.0.2",
57-
"@eslint/js": "^9.0.0",
58-
"@release-it/conventional-changelog": "^8.0.1",
59-
"@types/eslint": "^8.56.9",
57+
"@eslint/js": "^9.16.0",
58+
"@release-it/conventional-changelog": "^9.0.3",
59+
"@types/eslint": "^9.6.1",
6060
"@types/estree": "^1.0.5",
61-
"@typescript-eslint/parser": "^7.7.0",
62-
"@typescript-eslint/utils": "^7.7.0",
63-
"chai": "^4.4.1",
64-
"dirty-chai": "^2.0.1",
65-
"eslint": "9.14.0",
61+
"@typescript-eslint/parser": "^8.16.0",
62+
"@typescript-eslint/utils": "^8.16.0",
63+
"chai": "^4.5.0",
64+
"eslint": "^9.16.0",
6665
"eslint-config-not-an-aardvark": "^2.1.0",
6766
"eslint-config-prettier": "^9.1.0",
6867
"eslint-doc-generator": "^1.7.0",
6968
"eslint-plugin-eslint-plugin": "file:./",
7069
"eslint-plugin-markdown": "^5.0.0",
71-
"eslint-plugin-n": "^17.2.1",
70+
"eslint-plugin-n": "^17.14.0",
7271
"eslint-plugin-prettier": "^5.1.3",
73-
"eslint-plugin-unicorn": "^53.0.0",
74-
"eslint-remote-tester": "^3.0.1",
72+
"eslint-plugin-unicorn": "^56.0.1",
73+
"eslint-remote-tester": "^4.0.1",
7574
"eslint-scope": "^8.0.1",
7675
"espree": "^10.0.1",
77-
"globals": "^15.0.0",
78-
"husky": "^9.0.11",
76+
"globals": "^15.13.0",
77+
"husky": "^9.1.7",
7978
"lodash": "^4.17.21",
80-
"markdownlint-cli": "^0.41.0",
79+
"markdownlint-cli": "^0.43.0",
8180
"mocha": "^10.4.0",
82-
"npm-package-json-lint": "^7.1.0",
83-
"npm-run-all2": "^6.1.2",
84-
"nyc": "^15.1.0",
85-
"prettier": "^3.2.5",
81+
"npm-package-json-lint": "^8.0.0",
82+
"npm-run-all2": "^7.0.1",
83+
"nyc": "^17.1.0",
84+
"prettier": "^3.4.1",
8685
"release-it": "^17.2.0",
87-
"typescript": "^5.4.3"
86+
"typescript": "^5.7.2"
8887
},
8988
"peerDependencies": {
9089
"eslint": ">=8.23.0"

0 commit comments

Comments
 (0)