fix: update prettierignore to ignore the files formatted by biome

This commit is contained in:
2025-07-13 23:30:54 +02:00
parent bcb7554ffc
commit bba79d509b
2 changed files with 15 additions and 1 deletions

View File

@ -12,3 +12,17 @@ out
## Ignore dependencies ## Ignore dependencies
node_modules node_modules
## Files that are formatted by biome
**/*.js
**/*.ts
**/*.cjs
**/*.cts
**/*.mjs
**/*.mts
**/*.d.cts
**/*.d.mts
**/*.jsx
**/*.tsx
**/*.json
**/*.jsonc

View File

@ -229,7 +229,7 @@
"*.{md,markdown}": [ "*.{md,markdown}": [
"markdownlint-cli2 --fix" "markdownlint-cli2 --fix"
], ],
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [ "*.{js,ts,cjs,cts,mjs,mts,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true", "biome check --files-ignore-unknown=true",
"biome check --write --no-errors-on-unmatched", "biome check --write --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched" "biome format --write --no-errors-on-unmatched"