Skip to content

Commit 26b4227

Browse files
authored
Update dependencies (#2674)
1 parent 4357afb commit 26b4227

File tree

6 files changed

+22
-35
lines changed

6 files changed

+22
-35
lines changed

.eslint-doc-generatorrc.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ const config = {
2020
'requiresTypeChecking',
2121
],
2222
urlConfigs: 'https://github.com/sindresorhus/eslint-plugin-unicorn#recommended-config',
23-
// Workaround for https://github.com/bmish/eslint-doc-generator/issues/615
24-
pathRuleDoc: '../docs/rules/{name}.md',
25-
pathRuleList: '../readme.md',
2623
};
2724

2825
export default config;

.markdownlint.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
"no-hard-tabs": false,
55
"ul-style": {
66
"style": "dash"
7-
}
7+
},
8+
"descriptive-link-text": false
89
}

eslint.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ const config = [
2222
'.cache-eslint-remote-tester',
2323
'eslint-remote-tester-results',
2424
'test/integration/{fixtures,fixtures-local}/**',
25-
'workaround-for-eslint-doc-generator',
2625
'**/*.ts',
2726
],
2827
},

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@
2222
"scripts": {
2323
"create-rule": "node ./scripts/create-rule.js && npm run create-rules-index-file && npm run fix:eslint-docs",
2424
"create-rules-index-file": "node ./scripts/create-rules-index-file.js",
25-
"fix": "run-p --continue-on-error fix:*",
26-
"fix:eslint-docs": "eslint-doc-generator workaround-for-eslint-doc-generator",
25+
"fix": "run-p --continue-on-error \"fix:*\"",
26+
"fix:eslint-docs": "eslint-doc-generator",
2727
"fix:js": "npm run lint:js -- --fix",
2828
"fix:markdown": "npm run lint:markdown -- --fix",
2929
"fix:snapshots": "ava --update-snapshots",
3030
"integration": "node ./test/integration/test.js",
31-
"lint": "run-p --continue-on-error lint:*",
31+
"lint": "run-p --continue-on-error \"lint:*\"",
3232
"lint:eslint-docs": "npm run fix:eslint-docs -- --check",
3333
"lint:js": "eslint",
3434
"lint:markdown": "markdownlint \"**/*.md\"",
3535
"lint:package-json": "npmPkgJsonLint .",
3636
"rename-rule": "node ./scripts/rename-rule.js && npm run create-rules-index-file && npm run fix:eslint-docs",
3737
"run-rules-on-codebase": "eslint --config=./eslint.dogfooding.config.js",
3838
"smoke": "eslint-remote-tester --config ./test/smoke/eslint-remote-tester.config.js",
39-
"test": "npm-run-all --continue-on-error lint test:*",
39+
"test": "npm-run-all --continue-on-error lint \"test:*\"",
4040
"test:js": "c8 ava"
4141
},
4242
"files": [
@@ -62,54 +62,54 @@
6262
"change-case": "^5.4.4",
6363
"ci-info": "^4.2.0",
6464
"clean-regexp": "^1.0.0",
65-
"core-js-compat": "^3.42.0",
65+
"core-js-compat": "^3.43.0",
6666
"esquery": "^1.6.0",
6767
"find-up-simple": "^1.0.1",
68-
"globals": "^16.1.0",
68+
"globals": "^16.2.0",
6969
"indent-string": "^5.0.0",
7070
"is-builtin-module": "^5.0.0",
7171
"jsesc": "^3.1.0",
7272
"pluralize": "^8.0.0",
7373
"regexp-tree": "^0.1.27",
7474
"regjsparser": "^0.12.0",
75-
"semver": "^7.7.1",
75+
"semver": "^7.7.2",
7676
"strip-indent": "^4.0.0"
7777
},
7878
"devDependencies": {
7979
"@babel/code-frame": "^7.27.1",
80-
"@babel/core": "^7.27.1",
81-
"@babel/eslint-parser": "^7.27.1",
80+
"@babel/core": "^7.27.4",
81+
"@babel/eslint-parser": "^7.27.5",
8282
"@eslint/eslintrc": "^3.3.1",
8383
"@lubien/fixture-beta-package": "^1.0.0-beta.1",
84-
"@typescript-eslint/parser": "^8.32.0",
85-
"ava": "^6.3.0",
84+
"@typescript-eslint/parser": "^8.34.0",
85+
"ava": "^6.4.0",
8686
"c8": "^10.1.3",
8787
"enquirer": "^2.4.1",
88-
"eslint": "^9.26.0",
88+
"eslint": "^9.28.0",
8989
"eslint-ava-rule-tester": "^5.0.1",
9090
"eslint-config-xo": "^0.47.0",
9191
"eslint-doc-generator": "^2.1.2",
9292
"eslint-plugin-eslint-plugin": "^6.4.0",
93-
"eslint-plugin-jsdoc": "^50.6.11",
93+
"eslint-plugin-jsdoc": "^50.7.1",
9494
"eslint-remote-tester": "^4.0.1",
9595
"eslint-remote-tester-repositories": "^2.0.1",
96-
"espree": "^10.3.0",
96+
"espree": "^10.4.0",
9797
"listr2": "^8.3.3",
98-
"markdownlint-cli": "^0.44.0",
98+
"markdownlint-cli": "^0.45.0",
9999
"memoize": "^10.1.0",
100-
"nano-spawn": "^0.2.0",
101-
"node-style-text": "^0.0.7",
100+
"nano-spawn": "^1.0.2",
101+
"node-style-text": "^0.0.8",
102102
"npm-package-json-lint": "^8.0.0",
103-
"npm-run-all2": "^8.0.1",
103+
"npm-run-all2": "^8.0.4",
104104
"open-editor": "^5.1.0",
105105
"outdent": "^0.8.0",
106106
"pretty-ms": "^9.2.0",
107107
"typescript": "^5.8.3",
108108
"vue-eslint-parser": "^10.1.3",
109-
"yaml": "^2.7.1"
109+
"yaml": "^2.8.0"
110110
},
111111
"peerDependencies": {
112-
"eslint": ">=9.26.0"
112+
"eslint": ">=9.28.0"
113113
},
114114
"ava": {
115115
"files": [

workaround-for-eslint-doc-generator/index.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

workaround-for-eslint-doc-generator/package.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)