Skip to content

Commit

Permalink
chore: replace eslint with biome for formatting and linting (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeg authored Dec 3, 2024
1 parent b8d5739 commit 912cf64
Show file tree
Hide file tree
Showing 16 changed files with 560 additions and 2,330 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

144 changes: 0 additions & 144 deletions .eslintrc.js

This file was deleted.

30 changes: 30 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"files": {
"ignore": [".api", "*.json"],
"ignoreUnknown": true
},
"formatter": {
"enabled": true,
"indentStyle": "space"
},
"javascript": {
"formatter": {
"quoteStyle": "single"
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"organizeImports": {
"enabled": true
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
}
}
Loading

0 comments on commit 912cf64

Please sign in to comment.