-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc
78 lines (78 loc) · 1.6 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
71
72
73
74
75
76
77
78
{
"plugins": [
"unicorn",
"eslint-plugin-import-helpers",
"@typescript-eslint"
],
"extends": [
"airbnb-base",
"plugin:unicorn/recommended",
"prettier"
],
"rules": {
"no-undef": 0,
"no-restricted-syntax": 0,
"class-methods-use-this": 0,
"unicorn/prefer-spread": 0,
"unicorn/filename-case": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/prefer-query-selector": 0,
"unicorn/prefer-number-properties": 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"
}
}