Vue 项目启动抛出 Expected indentation of 2 spaces but found 1 tab

该问题是由于 ESLint 的验证规则不匹配

更多精彩

解决方式

  1. .eslintrc.js 文件的 rules 中加入 'no-tabs': 'off' 即可不检测该问题
// https://eslint.org/docs/user-guide/configuring

module.exports = {
	...
  'rules': {
		...
		'no-tabs': 'off'
  }
}
Logo

前往低代码交流专区

更多推荐