美文网首页
vue-cli4 取消关闭eslint 校验代码

vue-cli4 取消关闭eslint 校验代码

作者: 高山流水kay | 来源:发表于2020-08-11 09:59 被阅读0次

    在.eslintrc.js文件中修改   删掉 “@vue/prettier” ,完美

    module.exports = {

      root: true,

      env: {

        node: true  },

      extends: ["plugin:vue/essential"],// "@vue/prettier"  rules: {

        "no-console": process.env.NODE_ENV === "production" ? "error" : "off",

        "no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"  },

      parserOptions: {

        parser: "babel-eslint"  }

    };

    相关文章

      网友评论

          本文标题:vue-cli4 取消关闭eslint 校验代码

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