You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import jsdoc from "eslint-plugin-jsdoc"; |
|
|
|
export default [ |
|
jsdoc.configs["flat/recommended"], |
|
{ |
|
rules: { |
|
"jsdoc/require-param-description": "off", |
|
"jsdoc/require-returns-description": "off", |
|
"jsdoc/tag-lines": ["error", "any", { startLines: 1 }], |
|
}, |
|
}, |
|
];
|
|
|