Skip to content

Commit 7de1ac6

Browse files
gauravclaude
andcommitted
Replace ESLint with Biome for linting.
Removes ESLint 5.x with Airbnb style guide and adds Biome with recommended rules. Formatter is disabled; JSON linting is disabled. ESLint config files are deleted. Code fixes for Biome rule violations will follow in a separate commit. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2f00e96 commit 7de1ac6

File tree

5 files changed

+472
-3468
lines changed

5 files changed

+472
-3468
lines changed

.eslintrc.json

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

biome.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3+
"linter": {
4+
"enabled": true,
5+
"rules": {
6+
"recommended": true
7+
}
8+
},
9+
"formatter": {
10+
"enabled": false
11+
},
12+
"json": {
13+
"linter": {
14+
"enabled": false
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)