39 lines
585 B
JSON
39 lines
585 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"plugin:vue/recommended",
|
|
"@vue/standard"
|
|
],
|
|
"rules": {
|
|
"vue/script-indent": [
|
|
"error",
|
|
2,
|
|
{
|
|
"baseIndent": 1,
|
|
"switchCase": 0
|
|
}
|
|
],
|
|
"vue/component-name-in-template-casing": [
|
|
"error",
|
|
"kebab-case"
|
|
],
|
|
"vue/max-attributes-per-line": [2, {
|
|
"singleline": 3
|
|
}]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.vue"],
|
|
"rules": {
|
|
"indent": "off"
|
|
}
|
|
}
|
|
],
|
|
"parserOptions": {
|
|
"parser": "babel-eslint"
|
|
}
|
|
}
|