Skip to content

Commit fc14f31

Browse files
committed
chore: minor performance improvements and linting
1 parent 7f95e78 commit fc14f31

File tree

4 files changed

+955
-903
lines changed

4 files changed

+955
-903
lines changed

biome.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"vcs": {
4+
"enabled": false,
5+
"clientKind": "git",
6+
"useIgnoreFile": false
7+
},
8+
"files": {
9+
"ignoreUnknown": false,
10+
"ignore": [
11+
"node_modules",
12+
"src/app/*"
13+
]
14+
},
15+
"formatter": {
16+
"enabled": true,
17+
"indentStyle": "space",
18+
"indentWidth": 2,
19+
"lineWidth": 100
20+
},
21+
"organizeImports": {
22+
"enabled": true
23+
},
24+
"linter": {
25+
"enabled": true,
26+
"rules": {
27+
"complexity": {
28+
"noBannedTypes": "off"
29+
},
30+
"suspicious": {
31+
"noExplicitAny": "off",
32+
"noArrayIndexKey": "off"
33+
},
34+
"correctness": {
35+
"noUndeclaredDependencies": "off",
36+
"useExhaustiveDependencies": "off"
37+
}
38+
}
39+
},
40+
"javascript": {
41+
"formatter": {
42+
"quoteStyle": "single"
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)