Skip to content

Commit

Permalink
fix(eslint-config): adapt new JSDoc rules
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Oct 2, 2021
1 parent d8b8b41 commit 91fd093
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions packages/eslint-config/eslint-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
"@endo",
"plugin:@jessie.js/recommended"
],
"rules": {
"jsdoc/no-multi-asterisks": "off",
"jsdoc/multiline-blocks": "off",
// Use these rules to warn about JSDoc type problems, such as after
// upgrading eslint-plugin-jsdoc.
// Bump the 1's to 2's to get errors.
// "jsdoc/valid-types": 1,
// "jsdoc/no-undefined-types": [1, {"definedTypes": ["never", "unknown"]}],
"jsdoc/tag-lines": "off"
},
"settings": {
"jsdoc": {
"mode": "typescript"
}
},
"ignorePatterns": [
"coverage/**",
"**/output/**",
Expand Down

0 comments on commit 91fd093

Please sign in to comment.