Skip to content

Commit

Permalink
Update dependencies (#2447)
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Sep 27, 2024
1 parent d3e4b80 commit a5d5562
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 23 deletions.
6 changes: 6 additions & 0 deletions eslint.dogfooding.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ const config = [
linterOptions: {
reportUnusedDisableDirectives: false,
},
// Fake rule to allow inline config to disable
plugins: {
n: {
rules: {'no-unsupported-features/es-syntax': {}},
},
},
},
{
ignores: [
Expand Down
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,55 +51,55 @@
"xo"
],
"dependencies": {
"@babel/helper-validator-identifier": "^7.24.5",
"@babel/helper-validator-identifier": "^7.24.7",
"@eslint-community/eslint-utils": "^4.4.0",
"ci-info": "^4.0.0",
"clean-regexp": "^1.0.0",
"core-js-compat": "^3.37.0",
"esquery": "^1.5.0",
"globals": "^15.7.0",
"core-js-compat": "^3.38.1",
"esquery": "^1.6.0",
"globals": "^15.9.0",
"indent-string": "^4.0.0",
"is-builtin-module": "^3.2.1",
"jsesc": "^3.0.2",
"pluralize": "^8.0.0",
"read-pkg-up": "^7.0.1",
"regexp-tree": "^0.1.27",
"regjsparser": "^0.10.0",
"semver": "^7.6.1",
"semver": "^7.6.3",
"strip-indent": "^3.0.0"
},
"devDependencies": {
"@babel/code-frame": "^7.24.2",
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"@babel/code-frame": "^7.24.7",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@eslint/eslintrc": "^3.1.0",
"@lubien/fixture-beta-package": "^1.0.0-beta.1",
"@typescript-eslint/parser": "^8.1.0",
"@typescript-eslint/parser": "^8.4.0",
"ava": "^6.1.3",
"c8": "^9.1.0",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"enquirer": "^2.4.1",
"eslint": "^9.6.0",
"eslint": "^9.10.0",
"eslint-ava-rule-tester": "^5.0.1",
"eslint-doc-generator": "1.7.0",
"eslint-plugin-eslint-plugin": "^6.1.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-plugin-internal-rules": "file:./scripts/internal-rules/",
"eslint-remote-tester": "^4.0.0",
"eslint-remote-tester": "^4.0.1",
"eslint-remote-tester-repositories": "^2.0.0",
"espree": "^10.0.1",
"espree": "^10.1.0",
"execa": "^8.0.1",
"listr": "^0.14.3",
"lodash-es": "^4.17.21",
"markdownlint-cli": "^0.40.0",
"markdownlint-cli": "^0.41.0",
"memoize": "^10.0.0",
"npm-package-json-lint": "^7.1.0",
"npm-run-all2": "^6.1.2",
"npm-package-json-lint": "^8.0.0",
"npm-run-all2": "^6.2.2",
"outdent": "^0.8.0",
"pretty-ms": "^9.0.0",
"typescript": "^5.4.5",
"vue-eslint-parser": "^9.4.2",
"xo": "^0.58.0",
"yaml": "^2.4.2"
"pretty-ms": "^9.1.0",
"typescript": "^5.5.4",
"vue-eslint-parser": "^9.4.3",
"xo": "^0.59.3",
"yaml": "^2.5.1"
},
"peerDependencies": {
"eslint": ">=8.56.0"
Expand Down
2 changes: 1 addition & 1 deletion test/prefer-regexp-test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ test.vue({

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

Expand Down

0 comments on commit a5d5562

Please sign in to comment.