美文网首页程序员
vue-element-admin项目关闭eslint校验

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

作者: 祈澈菇凉 | 来源:发表于2020-07-20 17:55 被阅读0次

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

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

    PS D:\waibao\yysg_web_page> npm run dev
    
    > vue-element-admin@4.4.0 dev D:\waibao\yysg_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即可
    如下图所示:


    重新执行命令运行一下



    好的,终于可以打开了。


    相关文章

      网友评论

        本文标题:vue-element-admin项目关闭eslint校验

        本文链接:https://www.haomeiwen.com/subject/ormykktx.html