Commit c92fd173 authored by Jeff's avatar Jeff

更新规则

parent af844e9e
......@@ -11,7 +11,7 @@ charset = utf-8
indent_style = space
#缩进数量可选整数值2 or 4,或者tab
indent_size = 4
indent_size = 2
#换行符的格式 换行符,lf、cr和crlf
end_of_line = lf
......
......@@ -30,7 +30,7 @@ module.exports = {
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
indent: [
'error',
4,
2,
{
SwitchCase: 1,
flatTernaryExpressions: true
......@@ -40,7 +40,7 @@ module.exports = {
quotes: ['error', 'single'],
'vue/html-indent': [
'error',
4,
2,
{
attribute: 1,
baseIndent: 1,
......@@ -48,6 +48,18 @@ module.exports = {
alignAttributesVertically: true,
ignores: []
}
],
'vue/html-self-closing': [
'error',
{
html: {
void: 'never',
normal: 'never',
component: 'never'
},
svg: 'never',
math: 'always'
}
]
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment