How to disable require-jsdoc eslint in webpack

蓝咒 提交于 2019-12-23 15:34:53

问题


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.


回答1:


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

"require-jsdoc" : 0

I don't use webpack. Hope this helps.



来源:https://stackoverflow.com/questions/49237035/how-to-disable-require-jsdoc-eslint-in-webpack

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!