We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27f657c commit 843d513Copy full SHA for 843d513
biome.json
@@ -11,6 +11,16 @@
11
},
12
"linter": {
13
"rules": {
14
+ "complexity": {
15
+ "noForEach": "off"
16
+ },
17
+ "correctness": {
18
+ "noInvalidBuiltinInstantiation": {
19
+ "level": "error"
20
21
+ "noUndeclaredVariables": "error",
22
+ "noUnusedVariables": "error"
23
24
"style": {
25
"noNamespace": "error",
26
"useConsistentArrayType": {
@@ -40,16 +50,6 @@
40
50
"noUselessElse": "error",
41
51
"useShorthandFunctionType": "error"
42
52
43
- "correctness": {
44
- "noInvalidBuiltinInstantiation": {
45
- "level": "error"
46
- },
47
- "noUndeclaredVariables": "error",
48
- "noUnusedVariables": "error"
49
- "complexity": {
- "noForEach": "off"
53
"suspicious": {
54
"noEmptyBlockStatements": "error"
55
}
0 commit comments