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 8c2e56e commit 1dbb138Copy full SHA for 1dbb138
biome.json
@@ -1,5 +1,11 @@
1
{
2
- "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
+ "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3
+ "vcs": {
4
+ "enabled": true,
5
+ "clientKind": "git",
6
+ "useIgnoreFile": true,
7
+ "defaultBranch": "main"
8
+ },
9
"organizeImports": {
10
"enabled": true
11
},
@@ -14,13 +20,16 @@
14
20
"noEmptyTypeParameters": "error"
15
21
16
22
"suspicious": {
17
- "noExplicitAny": "off",
23
+ "noExplicitAny": "warn",
18
24
"noAssignInExpressions": "off",
19
25
"noRedeclare": "off",
26
"noImplicitAnyLet": "off"
27
28
"correctness": {
- "noUnusedImports": "error"
29
+ "noUnusedImports": {
30
+ "level": "error",
31
+ "fix": "unsafe"
32
+ }
33
34
"style": {
35
"useImportType": "error"
0 commit comments