Error : [eslint] Missing JSDoc comment. (require-jsdoc) I want to disable this error from webpack config so that it will not be displayed on the console.
Asked
Active
Viewed 2.2k times
1 Answers
55
I used the .eslintrc.json
file and added this under rules
"require-jsdoc" : 0
I don't use webpack. Hope this helps.

hunkpapa
- 578
- 6
- 5
-
2for my version of "eslint": "7.27.0" this worked like this "require-jsdoc" : "off" – Afaq Ahmed Khan May 26 '21 at 11:46
-
3For "eslint": "8.9.0" add "valid-jsdoc": "off", worked for me – ado387 Jun 18 '22 at 20:01