屏蔽eslint代码格式报错
Posted jianghan7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了屏蔽eslint代码格式报错相关的知识,希望对你有一定的参考价值。
1、在文件中找到node_modules
2、node_modules文件夹下的eslint-config-standard
3、打开eslint-config-standard文件夹下的eslintrc.json
4、在eslintrc.json的“rules”部分可以修改
把想屏蔽的错误的error改成off就可以屏蔽掉了
eg:
"no-irregular-whitespace": "error",
改成:"no-irregular-whitespace": "off",
以上是关于屏蔽eslint代码格式报错的主要内容,如果未能解决你的问题,请参考以下文章
vue 项目 webstrom IDE格式化代码规则遵循eslint设置