-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc
88 lines (88 loc) · 2.5 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"root": true,
"env": {
"browser": true,
"node": true
},
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
"plugins": ["@typescript-eslint"],
"rules": {
"semi": ["error", "always"],
"comma-dangle": ["error", "always-multiline"],
"arrow-parens": "off",
"object-curly-newline": [
"error",
{
"ObjectExpression": { "consistent": true },
"ObjectPattern": { "consistent": true },
"ImportDeclaration": { "consistent": true },
"ExportDeclaration": { "consistent": true }
}
],
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxEOF": 0,
"maxBOF": 0
}
],
"lines-between-class-members": "off",
"indent": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": "off",
"@typescript-eslint/no-parameter-properties": "off",
"no-use-before-define": "off",
"no-unused-vars": "off"
},
"overrides": [
{
"files": ["*.js"],
"rules": {
"@typescript-eslint/no-var-requires": "off"
}
},
{
"files": ["*.ts"],
"rules": {
// allow TypeScript method signature overloading, see https://github.com/typescript-eslint/typescript-eslint/issues/291
"no-dupe-class-members": "off",
// disable no-undef rule for TypeScript, see https://github.com/typescript-eslint/typescript-eslint/issues/342
"no-undef": "off"
}
},
{
"files": ["*.vue"],
"rules": {
"vue/html-self-closing": [
"error",
{
"html": {
"void": "always",
"normal": "any",
"component": "always"
},
"svg": "always",
"math": "always"
}
],
// allow TypeScript method signature overloading, see https://github.com/typescript-eslint/typescript-eslint/issues/291
"no-dupe-class-members": "off",
// disable no-undef rule for TypeScript, see https://github.com/typescript-eslint/typescript-eslint/issues/342
"no-undef": "off"
}
}
]
}