Skip to content

Commit 85cebab

Browse files
committed
Remove cjs, remove test-dependencies, replace eslint with biome
1 parent ba82f12 commit 85cebab

14 files changed

Lines changed: 664 additions & 5782 deletions

.eslintrc

Lines changed: 0 additions & 14 deletions
This file was deleted.

biome.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.4.6/schema.json",
3+
"vcs": {
4+
"enabled": false,
5+
"clientKind": "git",
6+
"useIgnoreFile": false
7+
},
8+
"files": {
9+
"ignoreUnknown": false,
10+
"includes": ["**", "!**/dist", "!**/coverage", "!**/.nyc_output", "!**/.claude", "!**/benchmarks"]
11+
},
12+
"formatter": {
13+
"enabled": true,
14+
"indentStyle": "tab",
15+
"lineWidth": 120
16+
},
17+
"assist": {
18+
"actions": {
19+
"source": {
20+
"organizeImports": "on"
21+
}
22+
}
23+
},
24+
"linter": {
25+
"enabled": true,
26+
"rules": {
27+
"recommended": true,
28+
"correctness": {
29+
"noUnusedImports": "error",
30+
"noUnusedFunctionParameters": "off"
31+
},
32+
"performance": {
33+
"noDelete": "off"
34+
},
35+
"complexity": {
36+
"noForEach": "off"
37+
},
38+
"suspicious": {
39+
"noFocusedTests": "error"
40+
}
41+
}
42+
},
43+
"javascript": {
44+
"formatter": {
45+
"quoteStyle": "single",
46+
"bracketSpacing": false,
47+
"trailingCommas": "none"
48+
}
49+
}
50+
}

0 commit comments

Comments
 (0)