Vue3如何关闭eslint:error Expected indentation of 0 spaces but found 4 indent
Posted 流楚丶格念
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue3如何关闭eslint:error Expected indentation of 0 spaces but found 4 indent相关的知识,希望对你有一定的参考价值。
eslint太坑了!!!!
报错
6:1 error Expected indentation of 0 spaces but found 4 indent
7:1 error Expected indentation of 0 spaces but found 4 indent
8:1 error Expected indentation of 0 spaces but found 4 indent
光报错格式不规范,我中国程序员受不了你这种规范
关闭
有vue.config.js
在vue.config.js文件的
module.exports =
模块末尾处添加
lintOnSave:false
就好了
无vue.config.js
源目录新建一个vue.config.js,在里面添加下面代码保存:
module.exports =
lintOnSave:false
重新
cnpm run dev
一下就好了
以上是关于Vue3如何关闭eslint:error Expected indentation of 0 spaces but found 4 indent的主要内容,如果未能解决你的问题,请参考以下文章
Vue3.x引用iconfont.js ,报错error 'l' is assigned to itself no-self-assign
Vue3---error xx should be on a new line
Vue3.0报错error: Unexpected console statement (no-console) 解决办法