美文网首页Vue生态圈Vue.js前端Vue专辑
VS Code关闭eslint的语法检查

VS Code关闭eslint的语法检查

作者: 知足常乐晨 | 来源:发表于2018-09-12 11:25 被阅读564次

    VS Code

    在文件->首选项->设置中添加"eslint.enable": false配置即可

    image.png

    右侧用户设置会自动覆盖左侧的默认设置

    vue工程中

    在webpack.base.conf.js配置文件中删除有关loader: 'eslint-loader',的配置,如下:

    const createLintingRule = () => ({
      test: /\.(js|vue)$/,
      loader: 'eslint-loader',
      enforce: 'pre',
      include: [resolve('src'), resolve('test')],
      options: {
        formatter: require('eslint-friendly-formatter'),
        emitWarning: !config.dev.showEslintErrorsInOverlay
      }
    })
    

    相关文章

      网友评论

        本文标题:VS Code关闭eslint的语法检查

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