-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
37 lines (37 loc) · 848 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
{
"extends": ["jam/typescript"],
"overrides": [
{
"files": ["*.spec.tsx"],
"env": {
"jest": true
},
"plugins": ["jest"]
}
],
"rules": {
"@typescript-eslint/no-use-before-define": "warn",
"@typescript-eslint/quotes": "warn",
"import/export": "off",
"import/named": "off",
"import/no-unresolved": "off",
"no-empty-function": "warn",
"no-unused-vars": "off",
"react/forbid-foreign-prop-types": "off",
"react/jsx-wrap-multilines": "off",
"react/no-unescaped-entities": "off",
"react/static-property-placement": "warn",
"import/extensions": [
"error",
{
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_" }
]
}
}