Skip to content

Commit

Permalink
infra: enable require-jsdoc eslint rule (#3175)
Browse files Browse the repository at this point in the history
  • Loading branch information
qwerty541 authored Sep 3, 2023
1 parent 70201d6 commit 13af3ba
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
// "no-dupe-class-members": "error",
// "no-this-before-super": "error",
// "no-var": "warn",
"object-shorthand": [ "warn" ]
"object-shorthand": [ "warn" ],
// "prefer-arrow-callback": "warn",
// "prefer-spread": "warn",
// "prefer-template": "warn",
Expand Down Expand Up @@ -211,13 +211,13 @@
// "padded-blocks": [ "warn", "never" ],
// "quote-props": [ "warn", "consistent-as-needed" ],
// "quotes": [ "warn", "single" ],
// "require-jsdoc": [ "warn", {
// "require": {
// "FunctionDeclaration": true,
// "MethodDefinition": true,
// "ClassDeclaration": false
// }
// }],
"require-jsdoc": [ "warn", {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": false
}
}]
// "semi-spacing": [ "warn", { "before": false, "after": true }],
// "semi": [ "error", "always" ],
// "sort-vars": "off",
Expand Down

0 comments on commit 13af3ba

Please sign in to comment.