vue开发如何让ESLint闭嘴(error Mixed spaces)

在这里插入图片描述
error Mixed spaces and tabs no-mixed-spaces-and-tabs

方法简单:
新建一个vue.config.js

module.exports = {
	//避免eslint报错
	lintOnSave:false 
}
发布了158 篇原创文章 · 获赞 44 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/qq_43277404/article/details/104524396