forked from AzuraCast/AzuraCast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
29 lines (29 loc) · 891 Bytes
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module.exports = {
extends: [
'eslint:recommended',
'plugin:vue/vue3-recommended',
"@vue/typescript/recommended",
],
"parser": "vue-eslint-parser",
"parserOptions": {
"parser": "@typescript-eslint/parser",
},
plugins: ['@typescript-eslint'],
rules: {
"@typescript-eslint/no-unused-vars": ["error", {
"varsIgnorePattern": "^_|props",
}],
"@typescript-eslint/no-explicit-any": "off",
"vue/multi-word-component-names": "off",
"vue/html-indent": ["error", 4, {
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0,
"alignAttributesVertically": true
}],
"vue/no-v-html": "off",
"vue/no-mutating-props": "off",
'vue/no-multiple-template-root': "off",
'vue/no-setup-props-destructure': "off"
}
}