eslint 缩进改成 tab

rules 里加入:

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

然后 indent 部分的设置改为:

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

你可能感兴趣的:(eslint 缩进改成 tab)