Skip to content

Commit

Permalink
Makefile: add clean
Browse files Browse the repository at this point in the history
  • Loading branch information
lovesegfault committed May 4, 2021
1 parent 88e6a1d commit de13f89
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
.PHONY: format lint test update
.PHONY: clean format lint test update

default: lint test build

clean:
rm -f .coverage
rm -fr .eggs
rm -fr .pytest_cache
rm -fr dist
rm -fr **/__pycache__
rm -fr build

format:
isort .
black .
Expand Down

0 comments on commit de13f89

Please sign in to comment.