美文网首页
eslint 缩进改成 tab

eslint 缩进改成 tab

作者: 14px | 来源:发表于2021-03-12 09:08 被阅读0次

rules 里加入:

"vue/html-indent": ["error", "tab", {
    "attribute": 1,
    "baseIndent": 1,
    "closeBracket": 0,
    "alignAttributesVertically": true,
    "ignores": []
}]

然后 indent 部分的设置改为:

'indent': [1, 'tab', {
    'SwitchCase': 1
}]

相关文章

网友评论

      本文标题:eslint 缩进改成 tab

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