-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbiome.jsonc
More file actions
27 lines (27 loc) · 638 Bytes
/
biome.jsonc
File metadata and controls
27 lines (27 loc) · 638 Bytes
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
{
"$schema": "https://biomejs.dev/schemas/2.1.2/schema.json",
"extends": ["ultracite"],
"linter": {
"rules": {
"suspicious": {
"noExplicitAny": "off",
"noConsole": "off",
"noAssignInExpressions": "off",
"useAwait": "off"
},
"style": {
"useShorthandFunctionType": "off",
"useTemplate": "off",
"noNonNullAssertion": "off"
},
"performance": {
"noNamespaceImport": "off",
"useTopLevelRegex": "off"
},
"correctness": {
"noUnusedVariables": "off",
"noUnusedFunctionParameters": "off"
}
}
}
}