-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
38 lines (35 loc) · 857 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
{
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"node_modules/",
"lib"
],
"parser": "@typescript-eslint/parser",
"plugins": ["import", "@typescript-eslint"],
"rules": {
"no-async-promise-executor": "error",
"no-return-await": "error",
"require-await": "error",
"max-len": "off",
"no-restricted-syntax": "off",
"import/no-unresolved": "off",
"import/no-extraneous-dependencies": [
"error",
{ "devDependencies": true }
]
},
"settings": {
"import/resolver": {
"node": {
"paths": ["packages"],
"extensions": [".js", ".json", ".ts"]
}
}
},
"env": {
"jest": true
}
}