forked from blockchain/blockchain-wallet-v4-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
45 lines (45 loc) · 1.15 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
{
"extends": ["eslint-config-constellation"],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 12,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": {
"project": "./tsconfig.json"
}
}
},
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "off",
"consistent-return": "off",
"func-names": "off",
"no-console": ["error", { "allow": ["warn", "error"] }],
"no-param-reassign": "off",
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"radix": "off",
"simple-import-sort/imports": [
"error",
{
"groups": [
["^react", "^@?\\w"],
[
"^(blockchain-wallet-v4|blockchain-info-components|components|coins|@core|data|layouts|middleware|providers|services|utils)(/.*|$)"
],
["^\\.", "^[^.]"]
]
}
]
}
}