-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (43 loc) · 1.01 KB
/
.eslintrc.json
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
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"project": "./tsconfig.eslint.json",
"tsconfigRootDir": "./"
},
"root": true,
"env": {
"node": true,
"es6": true,
"jest": true
},
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"prettier/@typescript-eslint",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"rules": {
"prettier/prettier": ["warn"],
"@typescript-eslint/no-explicit-any": 0,
"no-underscore-dangle": 0,
"import/extensions": 0,
"@typescript-eslint/explicit-module-boundary-types": 0
},
"overrides": [
{
"files": ["src/**/*.integration.test.{ts,tsx}"],
"rules": {
"global-require": 0,
"@typescript-eslint/no-var-requires": 0
}
}
]
}