8000 Update dependencies, add new rule jsdoc/imports-as-dependencies by hildjj · Pull Request #10 · cto-af/eslint-config · GitHub
[go: up one dir, main page]

Skip to content

Update dependencies, add new rule jsdoc/imports-as-dependencies #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update dependencies, add new rule jsdoc/imports-as-dependencies
  • Loading branch information
hildjj committed Jun 24, 2023
commit a70525016a4e51ebdcd9ae0901a31b819c58a1b1
2 changes: 1 addition & 1 deletion jsdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ module.exports = {
'jsdoc/check-alignment': 'error',
// https://github.com/eslint/eslint/issues/14745
'jsdoc/check-examples': 'off',
// Track https://github.com/gajus/eslint-plugin-jsdoc/issues/715
'jsdoc/check-indentation': 'off',
'jsdoc/check-line-alignment': ['error', 'never', {
wrapIndent: ' ',
Expand All @@ -41,6 +40,7 @@ module.exports = {
'jsdoc/check-values': 'error',
'jsdoc/empty-tags': 'error',
'jsdoc/implements-on-classes': 'error',
'jsdoc/imports-as-dependencies': 'error',
'jsdoc/informative-docs': 'off', // This sounds annoying
'jsdoc/match-description': 'error',
'jsdoc/match-name': 'off',
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
}
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"eslint": "^8.40.0",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"eslint": "^8.43.0",
"eslint-find-rules": "4.1.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-hildjj": "link:rules",
"eslint-plugin-jsdoc": "^44.2.3",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-node": "^11.1.0",
"typescript": "5.0.4"
"typescript": "5.1.3"
},
"engines": {
"node": ">=16"
Expand Down
10 changes: 5 additions & 5 deletions rules/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"eslint": "^8.40.0",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"eslint": "^8.43.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-jsdoc": "^44.2.3",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-node": "^11.1.0",
"typescript": "5.0.4"
"typescript": "5.1.3"
},
"engines": {
"node": ">=14"
Expand Down
0