Skip to content

Commit

Permalink
add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
atarutin committed May 26, 2024
1 parent 5b1df90 commit 3bc3624
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.PHONY: typehint
typehint:
mypy .

.PHONY: test
test:
pytest

.PHONY: lint
lint:
pylint **/*.py --rcfile=.pylintrc

.PHONY: checklist
checklist: lint typehint test

.PHONY: format
black:
black -l 80 *.py

.PHONY: clean
clean:
find . -type f -name '*.pyc' | xargs rm -fr
find . -type d -name '__pycache__' | xargs rm -fr

0 comments on commit 3bc3624

Please sign in to comment.