mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 02:13:09 +02:00
18 lines
336 B
Text
18 lines
336 B
Text
|
{
|
||
|
"parserOptions": {
|
||
|
"parser": "typescript-eslint-parser"
|
||
|
},
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:vue/recommended"
|
||
|
],
|
||
|
"rules": {
|
||
|
"vue/require-v-for-key": false,
|
||
|
"vue/max-attributes-per-line": false,
|
||
|
"vue/html-indent": false,
|
||
|
"vue/html-self-closing": false,
|
||
|
"vue/no-unused-vars": false,
|
||
|
"no-console": 0
|
||
|
}
|
||
|
}
|