-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.js
46 lines (44 loc) · 1.31 KB
/
.eslintrc.js
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
module.exports = {
root: true,
env: {
node: true
},
parser: "@typescript-eslint/parser",
plugins: [
"@typescript-eslint",
],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
],
rules: {
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-empty-interface": ["warn", {
"allowSingleExtends": true
}],
"@typescript-eslint/no-unused-vars": ["warn", {
"vars": "all",
"args": "none",
}],
"eqeqeq": ["error", "always"],
"comma-dangle": ["warn", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "always-multiline",
}],
"quotes": ["warn", "double"],
"@typescript-eslint/semi": ["error", "always"],
"semi-style": ["error", "last"],
"indent": ["warn", 4, {
"SwitchCase": 1,
"flatTernaryExpressions": true
}],
"curly": ["warn", "multi-line"],
"brace-style": ["warn"],
"no-trailing-spaces": ["warn"],
"keyword-spacing": ["warn"],
}
};