Skip to content

Commit c35374f

Browse files
committed
chore(lint): update linter rules config
1 parent 3e74439 commit c35374f

File tree

1 file changed

+14
-18
lines changed

1 file changed

+14
-18
lines changed

biome.jsonc

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,21 @@
1414
"all": false
1515
},
1616
"suspicious": {
17-
"noExplicitAny": "info",
18-
"noAssignInExpressions": "warn",
19-
"noConfusingVoidType": "warn"
17+
"noExplicitAny": "off",
18+
"noAssignInExpressions": "off",
19+
"noConfusingVoidType": "off"
2020
},
2121
"style": {
22-
"noNonNullAssertion": "warn",
23-
"noParameterAssign": "warn",
24-
"noCommaOperator": "warn"
25-
},
26-
"correctness": {
27-
"noUnnecessaryContinue": "warn",
28-
"noInnerDeclarations": "warn"
22+
"noNonNullAssertion": "off",
23+
"noParameterAssign": "info",
24+
"noCommaOperator": "info"
2925
},
3026
"complexity": {
3127
"noForEach": "off",
32-
"noBannedTypes": "warn"
28+
"noBannedTypes": "off"
3329
},
3430
"performance": {
35-
"noDelete": "warn"
31+
"noDelete": "off"
3632
}
3733
}
3834
},
@@ -42,7 +38,7 @@
4238
"linter": {
4339
"rules": {
4440
"suspicious": {
45-
"noRedeclare": "warn"
41+
"noRedeclare": "off"
4642
}
4743
}
4844
}
@@ -52,15 +48,15 @@
5248
"linter": {
5349
"rules": {
5450
"style": {
55-
"useSelfClosingElements": "warn"
51+
"useSelfClosingElements": "off"
5652
},
5753
"correctness": {
58-
"useJsxKeyInIterable": "warn",
59-
"useExhaustiveDependencies": "warn"
54+
"useJsxKeyInIterable": "off",
55+
"useExhaustiveDependencies": "off"
6056
},
6157
"suspicious": {
62-
"noArrayIndexKey": "warn",
63-
"noRedeclare": "warn"
58+
"noArrayIndexKey": "off",
59+
"noRedeclare": "off"
6460
}
6561
}
6662
}

0 commit comments

Comments
 (0)