-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc
70 lines (70 loc) · 1.68 KB
/
.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "jest", "prettier"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:jest/style",
"plugin:node/recommended",
"plugin:unicorn/recommended",
"prettier/@typescript-eslint",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"env": {
"browser": false,
"node": true,
"es6": true
},
"rules": {
"jest/prefer-to-be": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "off",
"no-global-assign": [
"error",
{
"exceptions": ["console"]
}
],
"unicorn/import-style": "off",
"unicorn/no-array-for-each": "off",
"unicorn/no-array-reduce": "off",
"unicorn/no-process-exit": "off",
"unicorn/no-reduce": "off",
"unicorn/prefer-module": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/template-indent": "off",
"node/no-missing-import": "off",
"node/no-unsupported-features/es-syntax": [
"error",
{
"ignores": ["modules"]
}
],
"node/no-extraneous-import": ["error"]
},
"overrides": [
{
"files": ["__tests__/**/*.ts"],
"env": {
"jest": true
},
"rules": {
"node/no-extraneous-import": "off",
"node/no-unpublished-import": "off",
"@typescript-eslint/no-non-null-assertion": "off"
}
},
{
"files": ["src/types/index.ts"],
"rules": {
"@typescript-eslint/no-namespace": "off"
}
}
]
}