vue-element-admin项目关闭eslint校验

时间:2022-07-22
本文章向大家介绍vue-element-admin项目关闭eslint校验,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

事情是这样的,今天在启动项目的时候报错了,报错差不多是这样的 ,我们都知道,ESLint 是一个代码规范和错误检查工具,对于代码的语法格式的规范相当的严格,我忘记自己在哪里的代码写的出现问题了,但现在直接启动不了就很麻烦了

只有先关闭一下eslint校验,先启动项目再说,其余的都是浮云。

PS D:waibaoyysg_web_page> npm run dev

> vue-element-admin@4.4.0 dev D:waibaoyysg_web_page
> vue-cli-service serve

 INFO  Starting development server...
98% after emitting CopyPlugin

 ERROR  Failed to compile with 1 errors                                                                                                                17:36:08
Module build failed (from ./node_modules/eslint-loader/index.js):
Error: .eslintrc.js:
        Configuration for rule "no-async-promise-executor" is invalid:
        Value ["never"] should NOT have more than 0 items.

 ...

You may use special comments to disable some warnings.
Use // eslint-disable-next-line to ignore the next line.
Use /* eslint-disable */ to ignore all warnings in a file.

解决办法:

非常的简单粗暴; 在vue.config.js中将lintOnSave设置为fasle即可 如下图所示:

重新执行命令运行一下

好的,终于可以打开了。