iceshrimp-161sh/packages/frontend/.eslintrc.json

26 lines
495 B
JSON
Raw Normal View History

2023-12-11 19:51:58 +01:00
{
"extends": ["plugin:vue/vue3-recommended"],
"plugins": ["@typescript-eslint"],
"rules": {
"vue/html-indent": ["error", "tab", {
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0,
"alignAttributesVertically": true,
"ignores": []
}],
"vue/multi-word-component-names": ["off"],
"vue/max-attributes-per-line": ["error", {
"singleline": {
"max": 4
},
"multiline": {
"max": 1
}
}]
},
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
}