22

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.

Nouman Altaf
  • 289
  • 1
  • 2
  • 13

1 Answers1

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