美文网首页
Unexpected tab character VUE 项目代

Unexpected tab character VUE 项目代

作者: 楠楠_c811 | 来源:发表于2020-08-11 10:43 被阅读0次

[eslint]
Unexpected tab character. (no-tabs)

vsCode编辑器不断报这个错,也不影响代码运行,但是警告一直都在,扰得人心慌慌。
解决办法如下:

项目根目录下找到.eslintrc.js文件,修改为:
  rules: {
    // allow async-await
    'generator-star-spacing': 'off',
    // allow debugger during development
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-tabs':"off" // 增加此行
  }

世界如此美好而清净,真棒。
如果上面代码解决不了,再试试下一招:

rules: {
    'indent':0,
    'no-tabs':0,
    'no-mixed-spaces-and-tabs': 0,
    'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
  }

相关文章

网友评论

      本文标题:Unexpected tab character VUE 项目代

      本文链接:https://www.haomeiwen.com/subject/cpuedktx.html