Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mattculler authored Oct 11, 2024
1 parent e804874 commit df9076d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ autoformat: format-ruff format-codespell ## Run all automatic formatters
.PHONY: format-ruff
format-ruff: ##- Automatically format with ruff
ruff check --fix $(SOURCES)
success=true
ruff check --fix $(SOURCES) || success=false
ruff format $(SOURCES)
$success || exit 1

.PHONY: format-codespell
format-codespell: ##- Fix spelling issues with codespell
Expand Down

0 comments on commit df9076d

Please sign in to comment.