-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
43 lines (43 loc) · 935 Bytes
/
.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
{
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:jest/recommended",
"standard"
],
"rules": {
"prettier/prettier": 1,
"no-tabs": 0,
"indent": 0,
"space-before-function-paren": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-inferrable-types": 0,
"no-prototype-builtins": 0,
"quote-props": 0,
"no-async-promise-executor": 0,
"prefer-const": 0,
"camelcase": 0,
"@typescript-eslint/no-namespace": 0,
"jest/no-done-callback": 0,
"eqeqeq": 1,
"@typescript-eslint/no-this-alias": 1,
"jest/valid-expect-in-promise": 1,
"jest/no-conditional-expect": 1,
"no-unneeded-ternary": 0,
"no-multiple-empty-lines": 0
},
"env": {
"node": true,
"jest/globals": true
},
"settings": {
"jest": {
"version": 26
}
}
}