Vue 项目启动抛出 Expected indentation of 2 spaces but found 1 tab
Vue 项目启动抛出 Expected indentation of 2 spaces but found 1 tab该问题是由于 ESLint 的验证规则不匹配更多精彩更多技术博客,请移步 asing1elife’s blog解决方式在 .eslintrc.js 文件的 rules 中加入 'no-tabs': 'off' 即可不检测该问题// https://eslin...
·
Vue 项目启动抛出 Expected indentation of 2 spaces but found 1 tab
该问题是由于 ESLint 的验证规则不匹配
更多精彩
- 更多技术博客,请移步 asing1elife’s blog
解决方式
- 在 .eslintrc.js 文件的 rules 中加入
'no-tabs': 'off'
即可不检测该问题
// https://eslint.org/docs/user-guide/configuring
module.exports = {
...
'rules': {
...
'no-tabs': 'off'
}
}
更多推荐
已为社区贡献28条内容
所有评论(0)