Skip to content

Commit

Permalink
chore: migrate from xo to biome (#608)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Jul 1, 2024
1 parent 5d4e747 commit a400793
Show file tree
Hide file tree
Showing 22 changed files with 1,351 additions and 4,929 deletions.
9 changes: 2 additions & 7 deletions .c8rc
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
{
"exclude": [
"build/test"
],
"reporter": [
"html",
"text"
]
"exclude": ["build/test"],
"reporter": ["html", "text"]
}
10 changes: 5 additions & 5 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"check-leaks": true,
"timeout": 2000,
"throw-deprecation": true,
"enable-source-maps": true,
"exit": true
"check-leaks": true,
"timeout": 2000,
"throw-deprecation": true,
"enable-source-maps": true,
"exit": true
}
4 changes: 2 additions & 2 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"assets": "build/binaries/*",
"branches": ["main"]
"assets": "build/binaries/*",
"branches": ["main"]
}
20 changes: 20 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"files": {
"ignore": ["./build", "./test/fixtures", "./node_modules", "./coverage"]
},
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"javascript": {
"formatter": {
"quoteStyle": "single"
}
}
}
Loading

0 comments on commit a400793

Please sign in to comment.