2024-05-23 17:03:10 +02:00
|
|
|
pre-commit:
|
|
|
|
parallel: true
|
|
|
|
commands:
|
2025-03-09 16:13:25 -05:00
|
|
|
biome-lint:
|
2024-09-05 06:08:00 -04:00
|
|
|
glob: "*.{js,jsx,ts,tsx}"
|
2025-03-09 16:13:25 -05:00
|
|
|
run: npx @biomejs/biome check --write --reporter=summary {staged_files} --no-errors-on-unmatched
|
2024-09-05 06:08:00 -04:00
|
|
|
stage_fixed: true
|
|
|
|
skip:
|
|
|
|
- merge
|
|
|
|
- rebase
|
|
|
|
|
|
|
|
pre-push:
|
|
|
|
commands:
|
2025-03-09 16:13:25 -05:00
|
|
|
biome-lint:
|
2024-09-05 06:08:00 -04:00
|
|
|
glob: "*.{js,ts,jsx,tsx}"
|
2025-03-09 16:13:25 -05:00
|
|
|
run: npx @biomejs/biome check --write --reporter=summary {push_files} --no-errors-on-unmatched
|
2024-10-01 23:41:09 +01:00
|
|
|
|
|
|
|
post-merge:
|
|
|
|
commands:
|
|
|
|
update-submodules:
|
|
|
|
run: git submodule update --init --recursive
|