-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc
45 lines (45 loc) · 1.33 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
{
"parserOptions": {
"ecmaVersion": 2015,
"sourceType": "module"
},
"env": {
"node": true,
"browser": true
},
"plugins": [
"jest",
"json",
"@typescript-eslint/eslint-plugin"
],
"extends": ["eslint:recommended", "plugin:jest/recommended", "plugin:@typescript-eslint/recommended", "plugin:json/recommended"],
"rules": {
"array-callback-return": 2,
"brace-style": [2, "1tbs"],
"camelcase": [2, { "properties": "always" }],
"comma-style": [2, "last"],
"eol-last": 2,
"indent": [2, 2, { "SwitchCase": 1 }],
"key-spacing": [2, { "beforeColon": false, "afterColon": true }],
"keyword-spacing": 2,
"linebreak-style": [2, "unix"],
"no-cond-assign": [2, "always"],
"no-console": 2,
"no-multiple-empty-lines": [2, { "max": 1 }],
"no-spaced-func": 2,
"no-trailing-spaces": 2,
"no-unused-vars": 2,
"no-whitespace-before-property": 2,
"newline-after-var": [2, "always"],
"object-curly-spacing": [2, "always"],
"prefer-rest-params": 2,
"quote-props": [2, "as-needed"],
"quotes": [2, "double"],
"semi": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"space-in-parens": [2, "never"],
"template-curly-spacing": [2, "never"],
"@typescript-eslint/no-explicit-any": "off"
}
}