forked from imbhargav5/rooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
68 lines (68 loc) · 1.63 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
},
"extends": [
"canonical",
"canonical/react",
"canonical/typescript",
"canonical/jest",
"prettier"
],
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"parser": "@typescript-eslint/parser",
"rules": {
"semi": [0],
"no-constant-condition": [2],
"no-undef": [2],
"no-dupe-args": [2],
"no-unreachable": [1],
"no-cond-assign": [2],
"no-dupe-keys": [1],
"prefer-const": [1],
"no-const-assign": [2],
"no-useless-constructor": [1],
"no-class-assign": [2],
"no-confusing-arrow": [2],
"constructor-super": [2],
"prefer-spread": [1],
"no-lonely-if": [1],
"no-continue": [1],
"no-redeclare": [0],
"comma-dangle": [0],
"no-extra-semi": [0],
"no-console": [0],
"no-mixed-spaces-and-tabs": [0],
"react/react-in-jsx-scope": [0],
"react/display-name": [0],
"jest/prefer-expect-assertions": 1,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-confusing-void-expression": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/no-redeclare": 0,
"@typescript-eslint/unbound-method": 0,
"arrow-body-style": 0,
"filenames/match-regex": 0,
"import/extensions": 0,
"import/no-namespace": 0,
"import/no-unassigned-import": 0,
"import/no-unresolved": 0,
"max-nested-callbacks": 0,
"unicorn/no-reduce": 0,
"import/no-extraneous-dependencies": 0,
"radix": 0,
"func-style": 0
},
"settings":{
"react": {
"version": "detect"
}
}
}