Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lefthook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ pre-push:
jobs:
- name: Run Prettier check; fix if check fails
root: frontend/
run: pixi run ./prettier-check-and-fix.sh
# Invoked through bash explicitly: on Windows, pixi hands the script to
# the OS to execute and gets `os error 193` (not a valid Win32
# application), so the hook could never run there.
run: pixi run bash ./prettier-check-and-fix.sh

- name: Run ESLint check
root: frontend/
Expand Down
Loading