Files
eslint-config/src/rules/vue/default.json
T

43 lines
674 B
JSON
Raw Normal View History

2020-02-14 13:15:09 +04:00
{
2020-02-14 13:25:08 +04:00
"vue/attributes-order": [
"error",
{
"order": [
"DEFINITION",
"LIST_RENDERING",
"CONDITIONALS",
"RENDER_MODIFIERS",
"GLOBAL",
"UNIQUE",
"TWO_WAY_BINDING",
"OTHER_DIRECTIVES",
"OTHER_ATTR",
"EVENTS",
"CONTENT"
]
}
],
2020-02-14 13:17:35 +04:00
"vue/html-indent": [
"error",
"tab",
{
"alignAttributesVertically": true,
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0
}
],
2020-02-14 13:19:20 +04:00
"vue/html-quotes": [
"error",
"double"
],
2020-02-14 13:15:09 +04:00
"vue/script-indent": [
"error",
"tab",
{
"baseIndent": 0,
"switchCase": 1
}
]
}