Nouman Altaf
Nouman Altaf

Reputation: 339

How to disable require-jsdoc eslint in webpack

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.

Upvotes: 27

Views: 27864

Answers (1)

hunkpapa
hunkpapa

Reputation: 708

I used the .eslintrc.json file and added this under rules

"require-jsdoc" : 0

I don't use webpack. Hope this helps.

Upvotes: 68

Related Questions