-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
39 lines (39 loc) · 959 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
{
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"parser": "@typescript-eslint/parser",
"extends": ["plugin:@typescript-eslint/recommended", "plugin:prettier/recommended", "plugin:jest/recommended", "standard"],
"rules": {
"prettier/prettier": 0,
"no-tabs": 0,
"indent": 0,
"space-before-function-paren": 0,
"@typescript-eslint/no-explicit-any": 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": 0,
"@typescript-eslint/no-this-alias": 1,
"jest/valid-expect-in-promise": 1,
"jest/no-conditional-expect": 1,
"@typescript-eslint/no-empty-interface": 0,
"generator-star-spacing": 0,
"no-unneeded-ternary": 0,
"@typescript-eslint/ban-types": 1
},
"env": {
"node": true,
"jest/globals": true
},
"settings": {
"jest": {
"version": 26
}
}
}