Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ default:

.PHONY: check-shell-formatting
check-shell-formatting:
shfmt --simplify --diff ci/* rust/ci/*
shfmt --simplify --diff ci/*.sh rust/ci/*.sh

.PHONY: check-yaml-formatting
check-yaml-formatting:
yamlfmt -verbose -lint -dstar .github/workflows/*

.PHONY: fix-shell-formatting
fix-shell-formatting:
shfmt --simplify --write ci/* rust/ci/*
shfmt --simplify --write ci/*.sh rust/ci/*.sh

.PHONY: fix-yaml-formatting
fix-yaml-formatting:
Expand Down
4 changes: 2 additions & 2 deletions rust/Makefile.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ fix-rust-formatting:

.PHONY: check-shell-formatting
check-shell-formatting:
shfmt --simplify --diff ci/*
shfmt --simplify --diff ci/*.sh

.PHONY: fix-shell-formatting
fix-shell-formatting:
shfmt --simplify --write ci/*
shfmt --simplify --write ci/*.sh

.PHONY: check-python-formatting
check-python-formatting:
Expand Down
Loading