-
Notifications
You must be signed in to change notification settings - Fork 23
/
.eslintrc.json
53 lines (53 loc) · 1.15 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
44
45
46
47
48
49
50
51
52
53
{
"root": true,
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"env": {
"jest": true
},
"ignorePatterns": [
"dist/*",
"docs/*",
"test/*",
"node_modules/*"
],
"parser": "@typescript-eslint/parser",
"rules": {
"no-process-env": 0,
"no-inline-comments": 0,
"no-warning-comments": 0,
"comma-dangle": [
"error",
"never"
],
"arrow-parens": [
"error",
"always"
],
"@typescript-eslint/naming-convention": 0,
"@typescript-eslint/no-floating-promises": 0,
"@typescript-eslint/no-misused-promises": 0,
"@typescript-eslint/no-unsafe-argument": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-unsafe-declaration-merging": 0,
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
}
}