Skip to content

Commit

Permalink
feat: bump jsdoccomment, devDeps.; fixes #1167
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Nov 10, 2023
1 parent 7a70c83 commit fd1eab0
Show file tree
Hide file tree
Showing 4 changed files with 783 additions and 724 deletions.
23 changes: 23 additions & 0 deletions docs/rules/require-description.md
Expand Up @@ -345,6 +345,29 @@ class quux {
// Settings: {"jsdoc":{"implementsReplacesDocs":false}}
// "jsdoc/require-description": ["error"|"warn", {"contexts":[{"comment":"JsdocBlock[postDelimiter=\"\"]:has(JsdocTag[tag=\"implements\"])","context":"any"}],"descriptionStyle":"tag"}]
// Message: Missing JSDoc @description declaration.

app.use(
/** @type {express.ErrorRequestHandler} */
(err, req, res, next) => {
// foo
}
);
// Message: Missing JSDoc block description.

app.use(
/** @type {express.ErrorRequestHandler} */
(
(err, req, res, next) => {
// foo
}
)
);
// Message: Missing JSDoc block description.

/** @type {TreeViewItemData[]} */
this.treeViewSelection = [];
// "jsdoc/require-description": ["error"|"warn", {"contexts":["AssignmentExpression"]}]
// Message: Missing JSDoc block description.
````


Expand Down
36 changes: 18 additions & 18 deletions package.json
Expand Up @@ -5,7 +5,7 @@
"url": "http://gajus.com"
},
"dependencies": {
"@es-joy/jsdoccomment": "~0.40.1",
"@es-joy/jsdoccomment": "~0.41.0",
"are-docs-informative": "^0.0.2",
"comment-parser": "1.4.1",
"debug": "^4.3.4",
Expand All @@ -18,31 +18,31 @@
"description": "JSDoc linting rules for ESLint.",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/node": "^7.22.19",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/plugin-transform-flow-strip-types": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/plugin-transform-flow-strip-types": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/register": "^7.22.15",
"@es-joy/escodegen": "^3.5.1",
"@es-joy/jsdoc-eslint-parser": "^0.19.0",
"@hkdobrev/run-if-changed": "^0.3.1",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/github": "^9.2.1",
"@semantic-release/github": "^9.2.3",
"@semantic-release/npm": "^11.0.1",
"@types/chai": "^4.3.9",
"@types/debug": "^4.1.10",
"@types/eslint": "^8.44.6",
"@types/esquery": "^1.5.2",
"@types/estree": "^1.0.4",
"@types/json-schema": "^7.0.14",
"@types/lodash.defaultsdeep": "^4.6.8",
"@types/mocha": "^10.0.3",
"@types/node": "^20.8.10",
"@types/semver": "^7.5.4",
"@types/spdx-expression-parse": "^3.0.4",
"@typescript-eslint/parser": "^6.9.1",
"@types/chai": "^4.3.10",
"@types/debug": "^4.1.12",
"@types/eslint": "^8.44.7",
"@types/esquery": "^1.5.3",
"@types/estree": "^1.0.5",
"@types/json-schema": "^7.0.15",
"@types/lodash.defaultsdeep": "^4.6.9",
"@types/mocha": "^10.0.4",
"@types/node": "^20.9.0",
"@types/semver": "^7.5.5",
"@types/spdx-expression-parse": "^3.0.5",
"@typescript-eslint/parser": "^6.10.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.1.1",
"camelcase": "^6.3.0",
Expand Down

0 comments on commit fd1eab0

Please sign in to comment.