Skip to content

Commit df35e1b

Browse files
committed
refactor: ♻️ biome.json and package.json configurations
* Set `ignoreUnknown` to `true` in `biome.json` for better handling of unknown files. * Simplified the `lint-staged` command in `package.json` by removing the `--files-ignore-unknown` flag.
1 parent 1485cd0 commit df35e1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"useIgnoreFile": true
77
},
88
"files": {
9-
"ignoreUnknown": false,
9+
"ignoreUnknown": true,
1010
"ignore": []
1111
},
1212
"formatter": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"prepublishOnly": "bun run build"
3434
},
3535
"lint-staged": {
36-
"*": "bun run format --no-errors-on-unmatched --files-ignore-unknown=true"
36+
"*": "bun run format"
3737
},
3838
"dependencies": {
3939
"ink": "^5.1.0",

0 commit comments

Comments
 (0)