美文网首页
VUE中去掉ESLint检查

VUE中去掉ESLint检查

作者: 袁俊亮技术博客 | 来源:发表于2017-09-29 13:49 被阅读495次

    build/webpack.base.conf文件,在module的rules下删除以下代码

     {
        test: /\.(js|vue)$/,
        loader: 'eslint-loader',
        enforce: 'pre',
        include: [resolve('src'), resolve('test')],
        options: {
          formatter: require('eslint-friendly-formatter')
        }
    }
    

    重启动服务

    相关文章

      网友评论

          本文标题:VUE中去掉ESLint检查

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