-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
52 lines (52 loc) · 1.34 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
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"env": {
"node": true,
"browser": true,
"jest": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:eslint-comments/recommended",
"plugin:jest/recommended",
"plugin:promise/recommended",
"plugin:unicorn/recommended",
"prettier"
],
"plugins": [
"react",
"@typescript-eslint",
"eslint-comments",
"jest",
"promise",
"unicorn"
],
"rules": {
"no-prototype-builtins": "off",
"@typescript-eslint/semi": 0,
"@typescript-eslint/member-delimiter-style": 0,
"@typescript-eslint/no-explicit-any": 0,
"react/jsx-indent": 0,
"react/jsx-indent-props": 0,
"unicorn/no-null": 0,
"react/require-default-props": 0,
"global-require": 0,
"react/jsx-props-no-spreading": 0,
"@typescript-eslint/ban-ts-ignore": 0,
"comma-dangle": 0,
"max-len": [
"error",
{
"code": 80
}
],
"import/prefer-default-export": "off",
"import/extensions": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/no-lonely-if": 0
}
}