-
Notifications
You must be signed in to change notification settings - Fork 16
/
.eslintrc.js
181 lines (175 loc) · 4.65 KB
/
.eslintrc.js
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
const disallowScreensImports = {
group: ["@/screens/**", "../**/screens/**"],
message: "Screens imports are only allowed in navigation and other screens.",
};
const disallowComponentsImports = {
group: ["@/components/**", "../**/components/**"],
message:
"Components imports are only allowed in screens, contexts and other components.",
};
const disallowHooksImports = {
group: ["@/hooks/**", "../**/hooks/**"],
message:
"Hooks imports are only allowed in screens, components, contexts and other hooks.",
};
const disallowContextImports = {
group: ["@/context/**", "../**/context/**"],
message:
"Contexts imports are only allowed in screens, components, hooks and other contexts.",
};
const disallowScriptsImports = {
group: ["@/scripts/**", "../**/scripts/**"],
message: "Scripts imports are only allowed in scripts.",
};
const disallowStoreImports = {
group: ["@/store/**", "../**/store/**"],
message:
"Store imports are only allowed in screens, components, hooks and itself",
};
module.exports = {
root: true,
extends: ["universe/native"],
plugins: ["react-hooks"],
rules: {
"react-hooks/rules-of-hooks": "error", // Checks rules of Hooks
"react-hooks/exhaustive-deps": "error", // Checks effect dependencies
"@typescript-eslint/no-unused-vars": "error",
"prettier/prettier": "error",
"import/order": "error",
"@typescript-eslint/ban-ts-comment": [
"error",
{ "ts-expect-error": "allow-with-description" },
],
"no-restricted-syntax": [
"error",
{
message:
"Do not use StyleSheet.create, it breaks type safety and allows for dead code.\nNo it's not faster, see https://stackoverflow.com/a/56219676\nIf you want to declare constant styles for memoized components, use something like `const myStyle: ViewStyle = { ... }`",
selector:
"MemberExpression[object.name='StyleSheet'][property.name='create']",
},
{
message:
"Do not use JSON.parse, it breaks type safety, use sanitization utils instead",
selector: "MemberExpression[object.name='JSON'][property.name='parse']",
},
],
"no-restricted-imports": [
"error",
{
patterns: [
disallowScreensImports,
disallowComponentsImports,
disallowHooksImports,
disallowContextImports,
disallowScriptsImports,
disallowStoreImports,
],
},
],
},
overrides: [
// node scripts
{
extends: "universe/node",
files: [
".eslintrc.js",
"babel.config.js",
"electron-webpack.js",
"metro.config.js",
"electron/main/**",
"packages/scripts/**",
],
},
// override import rules
{
rules: {
"no-restricted-imports": [
"error",
{ patterns: [disallowScreensImports, disallowScriptsImports] },
],
},
files: ["packages/components/**"],
},
{
rules: {
"no-restricted-imports": [
"error",
{
patterns: [
disallowComponentsImports,
disallowScreensImports,
disallowScriptsImports,
],
},
],
},
files: ["packages/hooks/**"],
},
{
rules: {
"no-restricted-imports": [
"error",
{ patterns: [disallowScreensImports, disallowScriptsImports] },
],
},
files: ["packages/context/**"],
},
{
rules: {
"no-restricted-imports": [
"error",
{
patterns: [
disallowScreensImports,
disallowComponentsImports,
disallowHooksImports,
disallowContextImports,
disallowStoreImports,
],
},
],
},
files: ["packages/scripts/**"],
},
{
rules: {
"no-restricted-imports": [
"error",
{
patterns: [
disallowScreensImports,
disallowComponentsImports,
disallowHooksImports,
disallowContextImports,
disallowScriptsImports,
],
},
],
},
files: ["packages/weshnet/**"],
},
{
rules: {
"no-restricted-imports": [
"error",
{
patterns: [disallowScriptsImports],
},
],
},
files: ["packages/screens/**"],
},
{
rules: {
"no-restricted-imports": [
"error",
{
patterns: [disallowScriptsImports],
},
],
},
files: ["packages/components/navigation/**"],
},
],
};