mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
5100e587d7
--------- Co-authored-by: Joep <jcbuhre@gmail.com> Co-authored-by: Omar Hussein <omarmohammad1951@gmail.com> Co-authored-by: Oleg Lobanov <oleg@lobanov.me>
28 lines
519 B
JSON
28 lines
519 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"plugin:vue/vue3-essential",
|
|
"eslint:recommended",
|
|
"@vue/eslint-config-typescript",
|
|
"@vue/eslint-config-prettier"
|
|
],
|
|
"rules": {
|
|
"vue/multi-word-component-names": "off",
|
|
"vue/no-mutating-props": [
|
|
"error",
|
|
{
|
|
"shallowOnly": true
|
|
}
|
|
]
|
|
// no-undef is already included in
|
|
// @vue/eslint-config-typescript
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
}
|
|
}
|