vue-cli3项目关闭ESlint检查
ESlint的语法检查可以让代码的书写更规范,可读性更好。但是在开发阶段尤其是在赶项目时,ESlint
的语法检查会降低我们的效率,特别是项目紧急还一直编译不过去。特地在此记录关闭ESlint
检查的配置。
module.exports = { root: true, parserOptions: { sourceType: 'module' }, parserOptions: { "parser": "babel-eslint" }, env: { browser: true, node: true, es6: true, }, extends: [ "plugin:vue/essential" ], rules: { 'no-console': 'off', } }