0.0.2
en cours: règles ESLint/Oxlint - eslint OK - imports EN COURS
This commit is contained in:
parent
63781a6119
commit
93dd909919
14 changed files with 2293 additions and 1509 deletions
26
rules/jsdoc.ts
Normal file
26
rules/jsdoc.ts
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import type { DummyRuleMap } from "oxlint";
|
||||
|
||||
const jsDocRules: DummyRuleMap = {
|
||||
"jsdoc/check-access": "warn",
|
||||
"jsdoc/check-property-names": "warn",
|
||||
"jsdoc/check-tag-names": [
|
||||
"warn",
|
||||
{
|
||||
definedTags: ["link"],
|
||||
},
|
||||
],
|
||||
"jsdoc/empty-tags": "warn",
|
||||
"jsdoc/implements-on-classes": "warn",
|
||||
"jsdoc/no-defaults": "warn",
|
||||
"jsdoc/require-param": "warn",
|
||||
"jsdoc/require-param-description": "warn",
|
||||
"jsdoc/require-param-name": "warn",
|
||||
"jsdoc/require-property": "warn",
|
||||
"jsdoc/require-property-description": "warn",
|
||||
"jsdoc/require-property-name": "warn",
|
||||
"jsdoc/require-returns": "warn",
|
||||
"jsdoc/require-returns-description": "warn",
|
||||
"jsdoc/require-yields": "warn",
|
||||
};
|
||||
|
||||
export default jsDocRules;
|
||||
Loading…
Add table
Add a link
Reference in a new issue