Skip to content

Commit 20f0c5a

Browse files
committed
fix: fix Biome formatter
1 parent 7df5050 commit 20f0c5a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"editor.defaultFormatter": "biomejs.biome"
2+
"editor.defaultFormatter": "biomejs.biome",
3+
"[json]": {
4+
"editor.defaultFormatter": "biomejs.biome"
5+
}
36
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
},
2424
"homepage": "https://github.com/cli-stuff/apr",
2525
"scripts": {
26-
"lint": "biome check --fix",
26+
"lint": "biome check --fix --vcs-enabled=true",
2727
"prepare": "husky",
28-
"format": "biome format --write .",
28+
"format": "biome format --write --vcs-enabled=true",
2929
"test": "FORCE_COLOR=true bun test",
3030
"preversion": "bun run format && git add .",
3131
"build": "bun build ./src/index.tsx --minify --outdir ./dist --target node --footer '// Built with Bun! (https://bun.sh)' --external=yoga-wasm-web",

0 commit comments

Comments
 (0)