Files
vladfaust.github.io/.eslintrc.json
2019-03-22 18:50:33 +03:00

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"
}
}