-
-
Notifications
You must be signed in to change notification settings - Fork 438
Expand file tree
/
Copy pathbiome.jsonc
More file actions
295 lines (295 loc) · 9.08 KB
/
biome.jsonc
File metadata and controls
295 lines (295 loc) · 9.08 KB
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": [
"@chainsafe/biomejs-config",
"@chainsafe/biomejs-config/recommended",
"@chainsafe/biomejs-config/nodejs",
"@chainsafe/biomejs-config/esm"
],
"vcs": {
"defaultBranch": "unstable"
},
"assist": {
"actions": {
"source": {
"organizeImports": {
"level": "on",
"options": {
"identifierOrder": "lexicographic",
"groups": [
[
// Bun modules
":BUN:",
// Node.js modules
":NODE:"
],
[
// Modules imported with the `npm:` protocol
"npm:*",
"npm:*/**"
],
[
// Libraries
":PACKAGE:",
// Libraries
":PACKAGE_WITH_PROTOCOL:",
"!@chainsafe/**",
"!@lodestar/**"
],
[
// URLs
":URL:",
// Sharp aliases
":ALIAS:"
],
["@chainsafe/**", "@lodestar/**"],
// All other paths
":PATH:"
]
}
},
"useSortedKeys": { "level": "off", "options": { "sortOrder": "lexicographic" } }
}
}
},
"files": {
"includes": [
"**/packages/**/*/src/**/*.ts",
"**/packages/**/*/test/**/*.ts",
"**/configs/**/*.ts",
"vitest.config.ts",
"!**/lib",
"!packages/**/*/spec-tests",
"!packages/**/*/node_modules/"
]
},
"javascript": {
"globals": ["Bun"]
},
"linter": {
"rules": {
"correctness": {
"useImportExtensions": {
"level": "error",
"options": {
"forceJsExtensions": false
}
},
"useParseIntRadix": {
"level": "off"
},
"noPrivateImports": "error"
},
"performance": {
// This rule should be enabled but with considerations and careful review
"noDelete": "off"
},
"style": {
// Will be enabled in a separate PR
"useArrayLiterals": "off",
// There are a lot of places we mutate params, should be fixed in an independent PR.
"noParameterAssign": "off",
"noRestrictedGlobals": {
"level": "error",
"options": {
"deniedGlobals": { "fetch": "Please use 'fetch' from '@lodestar/api' instead." }
}
},
// In some cases the enums are initialized with values of other enums
"useLiteralEnumMembers": "off",
// We use `+` operator for string concatenation a lot
"useTemplate": "off",
// We use to export types and object without differentiating
"useExportType": "off",
// We use to import types and object without differentiating
"useImportType": "off",
// We prefer to auto-initialize enums
"useEnumInitializers": "off",
"useNamingConvention": {
"level": "error",
"options": {
"strictCase": false,
"requireAscii": true,
"conventions": [
// Skip __dirname and any variable starting with _, for rest check next convention
{
"selector": {
"kind": "variable"
},
"match": "(?:__dirname)|(?:_.*)|(.*)"
},
{
"selector": {
"kind": "variable"
},
"formats": ["camelCase", "PascalCase", "CONSTANT_CASE"]
},
{
"selector": {
"kind": "typeLike"
},
"formats": ["camelCase", "snake_case", "PascalCase", "CONSTANT_CASE"]
},
{
"selector": {
"kind": "objectLiteralProperty"
},
"formats": ["camelCase", "snake_case", "PascalCase", "CONSTANT_CASE"]
},
{
"selector": {
"kind": "objectLiteralMethod"
},
"formats": ["camelCase", "snake_case", "PascalCase", "CONSTANT_CASE"]
},
// Skip any property starting with _ and then check for next convention
{
"selector": {
"kind": "classProperty"
},
"match": "(?:_.*)|(.*)"
},
{
"selector": {
"kind": "classProperty"
},
"formats": ["camelCase", "snake_case", "PascalCase", "CONSTANT_CASE"]
},
{
"selector": {
"kind": "typeProperty"
},
"formats": ["camelCase", "snake_case", "PascalCase", "CONSTANT_CASE"]
},
{
"selector": {
"kind": "typeMethod"
},
"formats": ["camelCase", "snake_case", "PascalCase", "CONSTANT_CASE"]
},
{
"selector": {
"kind": "enumMember"
},
"formats": ["camelCase", "snake_case", "PascalCase", "CONSTANT_CASE"]
},
{
"selector": {
"kind": "indexParameter"
},
"formats": ["camelCase", "PascalCase"]
},
{
"selector": {
"kind": "function"
},
"formats": ["camelCase", "PascalCase"]
}
]
}
},
// Currently there is no way to validate `imports` against package `exports` unless
// we change the tsconfig `moduleResolution`. This is a workaround for most common pattern
// used to export the files from packages
"noRestrictedImports": {
"level": "error",
"options": {
"patterns": [
{
"group": "**/lib/**",
"message": "Avoid importing directly from a package's internal 'lib' directory. This can cause issues when the package is updated."
}
]
}
}
},
"suspicious": {
// Will be enabled in separate PR
"useIterableCallbackReturn": "off",
// There is a lot of empty code blocks, should be enabled and clean up separately.
"noEmptyBlockStatements": "off",
// We are using `Object.prototype.hasOwnProperty` a lot because compiling lib is set to prior 2022
"noPrototypeBuiltins": "off"
},
"nursery": {
// Need to enable this rule with exception to anonymous functions
"useExplicitType": "off",
"noFloatingPromises": "error",
"noMisusedPromises": "error"
},
"complexity": {
// Should be done in a separate PR
"useIndexOf": "off",
// Should be done in a separate PR
"useDateNow": "off",
// The code usage looks suspicious so it should be enabled in a separate PR
"noCommaOperator": "off"
}
}
},
"overrides": [
{
"includes": ["**/packages/**/test/**"],
"linter": {
"rules": {
"correctness": { "noPrivateImports": "off" },
"style": { "noRestrictedImports": "off" }
}
}
},
// Code using console output
{
"includes": ["**/packages/cli/src/**", "**/packages/test-utils/src/**", "**/packages/flare/src/**"],
"linter": {
"rules": {
"suspicious": {
"noConsole": "off"
}
}
}
},
// All test files
{
"includes": ["**/packages/spec-test-util/src/**"],
"linter": {
"rules": {
"complexity": {
// During tests we often need to use private/protected attributes, which is only possible with literal keys
"useLiteralKeys": "off"
},
"suspicious": {
// During tests it's quicker to define variables with `let` without specifying types
"noImplicitAnyLet": "off",
// During testing we use `any` type for quick assignments
"noExplicitAny": "off",
// Console logging is often used in tests
"noConsole": "off"
}
}
}
},
{
"includes": [
"**/packages/beacon-node/src/db/buckets.ts",
"**/packages/beacon-node/src/execution/engine/mock.ts",
"**/packages/beacon-node/src/execution/engine/types.ts",
"**/packages/validator/src/buckets.ts",
"**/packages/prover/src/types.ts",
"**/prover/src/utils/process.ts",
"**/prover/src/verified_requests/**/*.ts",
"**/packages/types/src/utils/**/*.ts",
"**/packages/beacon-node/test/spec/bls/bls.ts"
],
"linter": {
"rules": {
"style": {
"useNamingConvention": {
"level": "off",
"options": {}
}
}
}
}
}
]
}