Skip to content

Commit

Permalink
chore: use jsdoc/no-multi-asterisks with allowWhitespace: true (#17900)
Browse files Browse the repository at this point in the history
  • Loading branch information
kecrily committed Dec 22, 2023
1 parent a9a17b3 commit 3826cdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-config-eslint/base.js
Expand Up @@ -334,7 +334,7 @@ const jsdocConfigs = [jsdoc.configs["flat/recommended"], {
"jsdoc/empty-tags": "error",
"jsdoc/implements-on-classes": "error",
"jsdoc/multiline-blocks": "error",
"jsdoc/no-multi-asterisks": "error",
"jsdoc/no-multi-asterisks": ["error", { allowWhitespace: true }],
"jsdoc/require-jsdoc": ["error", { require: { ClassDeclaration: true } }],
"jsdoc/require-param": "error",
"jsdoc/require-param-description": "error",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-eslint/eslintrc.js
Expand Up @@ -154,7 +154,7 @@ module.exports = {
"jsdoc/empty-tags": "error",
"jsdoc/implements-on-classes": "error",
"jsdoc/multiline-blocks": "error",
"jsdoc/no-multi-asterisks": "error",
"jsdoc/no-multi-asterisks": ["error", { allowWhitespace: true }],
"jsdoc/require-jsdoc": [
"error",
{
Expand Down

0 comments on commit 3826cdf

Please sign in to comment.