-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc
32 lines (32 loc) · 1.01 KB
/
.eslintrc
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
30
31
32
{
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:vue/recommended"
],
"parserOptions": {
"parser": "@typescript-eslint/parser",
"ecmaVersion": 2018,
"sourceType": "module"
// Allows for the use of imports
},
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/member-delimiter-style": [
"error",
{
"multiline": {
"delimiter": "none"
}
}
],
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/explicit-function-return-type": "off",
// Errors on x! assertions that x isn't null
"@typescript-eslint/no-non-null-assertion": "off",
"vue/html-self-closing": "off",
"vue/html-closing-bracket-newline": "off",
"vue/attribute-hyphenation": "off",
"vue/singleline-html-element-content-newline": "off",
"vue/html-indent": ["error", 4]
}
}