mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-24 01:39:06 +01:00
26 lines
495 B
JSON
26 lines
495 B
JSON
|
{
|
||
|
"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"
|
||
|
}
|
||
|
}
|