chore: improve biome checking (#27140)

This commit is contained in:
Volnei Munhoz
2026-01-22 12:34:27 -03:00
committed by GitHub
parent aa8804e498
commit e056274983
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,5 +3,5 @@ if [ -f .git/MERGE_HEAD ]; then
exit 0
fi
yarn lint-staged
yarn lint-staged --verbose
yarn app-store:build && git add packages/app-store/*.generated.*
+1 -1
View File
@@ -1,5 +1,5 @@
export default {
"(apps|packages|companion)/**/*.{js,ts,jsx,tsx}": (files) =>
`biome lint --config-path=biome-staged.json ${files.join(" ")}`,
`biome lint --reporter summary --config-path=biome-staged.json ${files.join(" ")}`,
"packages/prisma/schema.prisma": ["prisma format"],
};