-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
46 lines (46 loc) · 1.38 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
{
"plugins": ["eslint-plugin-import-helpers", "@typescript-eslint"],
"extends": ["airbnb-base", "prettier"],
"rules": {
"no-continue": "off",
"no-undef": 0,
"no-restricted-syntax": 0,
"class-methods-use-this": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"import/extensions": 0,
"import-helpers/order-imports": [
"warn",
{
"newlinesBetween": "always",
"groups": [
"module",
["/^app/", "/^lib/", "/^config/", "/^src/", "/^ui/"],
["/^$/", "/^&/"],
["/^@shared/", "/^@app/", "/^@back/", "/^@front/"],
["parent", "sibling", "index"]
],
"alphabetize": {
"order": "ignore",
"ignoreCase": true
}
}
],
"no-unused-vars": 0,
"no-useless-constructor": 0,
"no-empty-function": [
"error",
{
"allow": ["constructors"]
}
],
"react/prop-types": 0
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": "tsconfig.json"
}
}