-
Notifications
You must be signed in to change notification settings - Fork 31
/
.eslintrc
48 lines (48 loc) · 853 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
44
45
46
47
48
{
"parser": "@typescript-eslint/parser",
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:prettier/recommended"
],
"parserOptions": {
"sourceType": "module"
},
"settings": {
"import/extensions": [
".js",
".ts"
],
"import/parsers": {
"@typescript-eslint/parser": [
".ts"
]
},
"import/resolver": {
"node": {
"extensions": [
".js",
".ts"
]
}
}
},
"plugins": [
"import",
"jest",
"prettier"
],
"env": {
"jest": true,
"es6": true
},
"rules": {
"no-undef": 0,
"import/extensions": 0,
"import/prefer-default-export": 0,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/no-explicit-any": 0,
"no-restricted-exports": 0
}
}