Skip to content

Commit

Permalink
chore: use biome instead of xo (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored Jul 18, 2024
1 parent f809901 commit a637784
Show file tree
Hide file tree
Showing 7 changed files with 8,619 additions and 108 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
node: [18, 20, 22]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@v4
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ coverage/
.vscode/
.rts2*
dist/
package-lock.json
21 changes: 21 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"files": {
"include": ["./src/**/*.ts", "./test/**/*.ts"],
"ignore": ["./build/**/*"]
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"javascript": {
"formatter": {
"quoteStyle": "single"
}
}
}
Loading

0 comments on commit a637784

Please sign in to comment.