美文网首页
添加eslint

添加eslint

作者: coderfl | 来源:发表于2021-08-03 10:04 被阅读0次

vue add @vue/eslint
vue-docs-zh-cn/README.md at master · vuejs/vue-docs-zh-cn · GitHub


vue cli 3 lintOnSave 配置有时无效问题
在 vue.config.js 中配置:

module.exports = {
    devServer: {
        overlay: {
            warnings: true,
            errors: true
        }
    },
    lintOnSave: 'error',
    chainWebpack: config => {
        config.module.rule('eslint').use('eslint-loader').loader('eslint-loader').tap(opt => {
            opt.emitWarning = opt.emitError = opt.failOnWarning = opt.failOnError = true;
            return opt;
        });
    }
};

相关文章

网友评论

      本文标题:添加eslint

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