eslint 缩进改成 tab
2021-03-12 本文已影响0人
14px
rules 里加入:
"vue/html-indent": ["error", "tab", {
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0,
"alignAttributesVertically": true,
"ignores": []
}]
然后 indent 部分的设置改为:
'indent': [1, 'tab', {
'SwitchCase': 1
}]