How to develop vue make ESLint shut up (error Mixed spaces)

Here Insert Picture Description
error Mixed spaces and tabs no-mixed-spaces-and-tabs

The method is simple:
create a new vue.config.js

module.exports = {
	//避免eslint报错
	lintOnSave:false 
}
Published 158 original articles · won praise 44 · views 30000 +

Guess you like

Origin blog.csdn.net/qq_43277404/article/details/104524396