Skip to content

Commit 37e971a

Browse files
authored
Update development dependencies and formatting (#2518)
1 parent 9252468 commit 37e971a

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

lib/rules/require-prop-types.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ module.exports = {
7575
return
7676
}
7777
const hasType =
78-
prop.type === 'array' ? false : optionHasType(prop.value) ?? true
78+
prop.type === 'array' ? false : (optionHasType(prop.value) ?? true)
7979

8080
if (!hasType) {
8181
const { node, propName } = prop

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -60,41 +60,41 @@
6060
"natural-compare": "^1.4.0",
6161
"nth-check": "^2.1.1",
6262
"postcss-selector-parser": "^6.0.15",
63-
"semver": "^7.6.0",
63+
"semver": "^7.6.3",
6464
"vue-eslint-parser": "^9.4.3",
6565
"xml-name-validator": "^4.0.0"
6666
},
6767
"devDependencies": {
68-
"@ota-meshi/site-kit-eslint-editor-vue": "^0.2.0",
69-
"@stylistic/eslint-plugin": "^2.2.2",
68+
"@ota-meshi/site-kit-eslint-editor-vue": "^0.2.4",
69+
"@stylistic/eslint-plugin": "^2.6.0",
7070
"@types/eslint": "^8.56.2",
7171
"@types/eslint-visitor-keys": "^3.3.0",
7272
"@types/natural-compare": "^1.4.3",
7373
"@types/node": "^14.18.63",
74-
"@types/semver": "^7.5.7",
74+
"@types/semver": "^7.5.8",
7575
"@types/xml-name-validator": "^4.0.3",
76-
"@typescript-eslint/parser": "^7.13.1",
77-
"@typescript-eslint/types": "^7.13.1",
76+
"@typescript-eslint/parser": "^7.18.0",
77+
"@typescript-eslint/types": "^7.18.0",
7878
"assert": "^2.1.0",
7979
"env-cmd": "^10.1.0",
80-
"esbuild": "^0.21.5",
81-
"eslint": "^8.56.0",
80+
"esbuild": "^0.23.0",
81+
"eslint": "^8.57.0",
8282
"eslint-config-prettier": "^9.1.0",
83-
"eslint-plugin-eslint-plugin": "~6.1.0",
83+
"eslint-plugin-eslint-plugin": "~6.2.0",
8484
"eslint-plugin-import": "^2.29.1",
8585
"eslint-plugin-jsonc": "^2.16.0",
8686
"eslint-plugin-node-dependencies": "^0.12.0",
87-
"eslint-plugin-prettier": "^5.1.3",
88-
"eslint-plugin-unicorn": "^54.0.0",
87+
"eslint-plugin-prettier": "^5.2.1",
88+
"eslint-plugin-unicorn": "^55.0.0",
8989
"eslint-plugin-vue": "file:.",
9090
"espree": "^9.6.1",
9191
"events": "^3.3.0",
9292
"markdownlint-cli": "^0.41.0",
93-
"mocha": "^10.3.0",
93+
"mocha": "^10.7.0",
9494
"nyc": "^17.0.0",
9595
"pathe": "^1.1.2",
96-
"prettier": "^3.2.5",
97-
"typescript": "^5.3.3",
98-
"vitepress": "^1.0.0-rc.42"
96+
"prettier": "^3.3.3",
97+
"typescript": "^5.5.4",
98+
"vitepress": "^1.3.1"
9999
}
100100
}

0 commit comments

Comments
 (0)