-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
43 lines (43 loc) · 1.2 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
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"ignorePatterns": ["logger.ts", "setup.ts", "*.js"],
"env": {
"node": true,
"jest": true
},
"plugins": ["@typescript-eslint", "node", "jest", "prettier"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:node/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
"rules": {
"jest/expect-expect": "off",
"@typescript-eslint/ban-types": [
"error",
{
"types": {
"Function": false
}
}
],
"node/no-unsupported-features/es-syntax": [
"error",
{ "ignores": ["modules"] }
],
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": "off",
"node/no-unpublished-import": "off",
"node/no-missing-import": "off",
"jest/no-standalone-expect": "off",
"jest/no-done-callback": "off",
"prettier/prettier": "off"
}
}