Skip to content

Commit dac257e

Browse files
committed
chore: 🔧 enable VCS in biome.json and refactor scripts in package.json
* Enabled version control system (VCS) in `biome.json`. * Updated `lint` and `format` scripts in `package.json` to remove `--vcs-enabled=true` flag.
1 parent 46e9ee2 commit dac257e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

‎biome.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
33
"vcs": {
4-
"enabled": false,
4+
"enabled": true,
55
"clientKind": "git",
66
"useIgnoreFile": true
77
},

‎package.json‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
},
2525
"homepage": "https://github.com/cli-stuff/apr",
2626
"scripts": {
27-
"lint": "biome check --fix --vcs-enabled=true",
28-
"prepare": "husky",
29-
"format": "biome format --write --vcs-enabled=true",
27+
"lint": "biome check --fix",
28+
"format": "biome format --write",
3029
"test": "FORCE_COLOR=true bun test",
31-
"preversion": "bun run format && git add .",
3230
"build": "bun build ./src/index.tsx --minify --outdir ./dist --target node --footer '// Built with Bun! (https://bun.sh)' --external=yoga-wasm-web",
31+
"prepare": "husky",
32+
"preversion": "bun run format && git add .",
3333
"prepublishOnly": "bun run build"
3434
},
3535
"lint-staged": {

0 commit comments

Comments
 (0)