Skip to content

Commit a5d5562

Browse files
authored
Update dependencies (#2447)
1 parent d3e4b80 commit a5d5562

File tree

3 files changed

+29
-23
lines changed

3 files changed

+29
-23
lines changed

eslint.dogfooding.config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ const config = [
1111
linterOptions: {
1212
reportUnusedDisableDirectives: false,
1313
},
14+
// Fake rule to allow inline config to disable
15+
plugins: {
16+
n: {
17+
rules: {'no-unsupported-features/es-syntax': {}},
18+
},
19+
},
1420
},
1521
{
1622
ignores: [

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -51,55 +51,55 @@
5151
"xo"
5252
],
5353
"dependencies": {
54-
"@babel/helper-validator-identifier": "^7.24.5",
54+
"@babel/helper-validator-identifier": "^7.24.7",
5555
"@eslint-community/eslint-utils": "^4.4.0",
5656
"ci-info": "^4.0.0",
5757
"clean-regexp": "^1.0.0",
58-
"core-js-compat": "^3.37.0",
59-
"esquery": "^1.5.0",
60-
"globals": "^15.7.0",
58+
"core-js-compat": "^3.38.1",
59+
"esquery": "^1.6.0",
60+
"globals": "^15.9.0",
6161
"indent-string": "^4.0.0",
6262
"is-builtin-module": "^3.2.1",
6363
"jsesc": "^3.0.2",
6464
"pluralize": "^8.0.0",
6565
"read-pkg-up": "^7.0.1",
6666
"regexp-tree": "^0.1.27",
6767
"regjsparser": "^0.10.0",
68-
"semver": "^7.6.1",
68+
"semver": "^7.6.3",
6969
"strip-indent": "^3.0.0"
7070
},
7171
"devDependencies": {
72-
"@babel/code-frame": "^7.24.2",
73-
"@babel/core": "^7.24.5",
74-
"@babel/eslint-parser": "^7.24.5",
72+
"@babel/code-frame": "^7.24.7",
73+
"@babel/core": "^7.25.2",
74+
"@babel/eslint-parser": "^7.25.1",
7575
"@eslint/eslintrc": "^3.1.0",
7676
"@lubien/fixture-beta-package": "^1.0.0-beta.1",
77-
"@typescript-eslint/parser": "^8.1.0",
77+
"@typescript-eslint/parser": "^8.4.0",
7878
"ava": "^6.1.3",
79-
"c8": "^9.1.0",
79+
"c8": "^10.1.2",
8080
"chalk": "^5.3.0",
8181
"enquirer": "^2.4.1",
82-
"eslint": "^9.6.0",
82+
"eslint": "^9.10.0",
8383
"eslint-ava-rule-tester": "^5.0.1",
8484
"eslint-doc-generator": "1.7.0",
85-
"eslint-plugin-eslint-plugin": "^6.1.0",
85+
"eslint-plugin-eslint-plugin": "^6.2.0",
8686
"eslint-plugin-internal-rules": "file:./scripts/internal-rules/",
87-
"eslint-remote-tester": "^4.0.0",
87+
"eslint-remote-tester": "^4.0.1",
8888
"eslint-remote-tester-repositories": "^2.0.0",
89-
"espree": "^10.0.1",
89+
"espree": "^10.1.0",
9090
"execa": "^8.0.1",
9191
"listr": "^0.14.3",
9292
"lodash-es": "^4.17.21",
93-
"markdownlint-cli": "^0.40.0",
93+
"markdownlint-cli": "^0.41.0",
9494
"memoize": "^10.0.0",
95-
"npm-package-json-lint": "^7.1.0",
96-
"npm-run-all2": "^6.1.2",
95+
"npm-package-json-lint": "^8.0.0",
96+
"npm-run-all2": "^6.2.2",
9797
"outdent": "^0.8.0",
98-
"pretty-ms": "^9.0.0",
99-
"typescript": "^5.4.5",
100-
"vue-eslint-parser": "^9.4.2",
101-
"xo": "^0.58.0",
102-
"yaml": "^2.4.2"
98+
"pretty-ms": "^9.1.0",
99+
"typescript": "^5.5.4",
100+
"vue-eslint-parser": "^9.4.3",
101+
"xo": "^0.59.3",
102+
"yaml": "^2.5.1"
103103
},
104104
"peerDependencies": {
105105
"eslint": ">=8.56.0"

test/prefer-regexp-test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ test.vue({
178178

179179
const supportsUnicodeSets = (() => {
180180
try {
181-
// eslint-disable-next-line prefer-regex-literals -- Can't test with regex literal
181+
// eslint-disable-next-line prefer-regex-literals, n/no-unsupported-features/es-syntax -- Can't test with regex literal
182182
return new RegExp('.', 'v').unicodeSets;
183183
} catch {}
184184

0 commit comments

Comments
 (0)