2022-02-23 15:21:02 +01:00
|
|
|
{
|
|
|
|
"root": true,
|
|
|
|
"parser": "vue-eslint-parser",
|
|
|
|
"parserOptions": {
|
|
|
|
"parser": "@typescript-eslint/parser"
|
|
|
|
},
|
|
|
|
"plugins": [ "@typescript-eslint" ],
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:vue/vue3-recommended"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"vue/multi-word-component-names": "off",
|
2022-12-16 14:44:54 +01:00
|
|
|
"vue/max-attributes-per-line": "off",
|
|
|
|
"vue/html-self-closing": "off",
|
|
|
|
"vue/singleline-html-element-content-newline": "off",
|
2022-02-23 15:21:02 +01:00
|
|
|
"vue/require-default-prop": "off",
|
2022-12-16 14:44:54 +01:00
|
|
|
"vue/html-indent": "off",
|
|
|
|
"vue/multiline-html-element-content-newline": "off"
|
2022-02-23 15:21:02 +01:00
|
|
|
}
|
|
|
|
}
|