Skip to content

Commit

Permalink
Simplify code-check for better readability
Browse files Browse the repository at this point in the history
  • Loading branch information
kyaukyuai committed Mar 16, 2024
1 parent 069c0c1 commit 277ffe4
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@ shell:
flake8-check:
poetry run flake8 $(CODE_DIR)

black-check:
poetry run black --check $(CODE_DIR)

pre-commit-run:
poetry run pre-commit run --all-files

code-check: flake8-check black-check pre-commit-run
code-check: flake8-check pre-commit-run

.PHONY: build up down logs shell code-check

0 comments on commit 277ffe4

Please sign in to comment.