Skip to content

Commit 315c557

Browse files
committed
biome rule update
1 parent f337577 commit 315c557

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

biome.jsonc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3+
"extends": ["ultracite/core"],
4+
"linter": {
5+
"rules": {
6+
"style": {
7+
"useBlockStatements": "off",
8+
"useNodejsImportProtocol": "warn",
9+
"noNonNullAssertion": "warn"
10+
},
11+
"suspicious": {
12+
"useAwait": "warn",
13+
"noExplicitAny": "warn"
14+
},
15+
"correctness": {
16+
"noUnusedVariables": "warn"
17+
},
18+
"performance": {
19+
"noBarrelFile": "warn",
20+
"noNamespaceImport": "warn"
21+
}
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)