Skip to content

Commit

Permalink
Fix the lint and format make recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorJohn committed Jul 31, 2022
1 parent 0538932 commit 8d6f02c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ dev:

.PHONY: format
format:
isort aiogqlc examples tests setup.py
black aiogqlc examples tests setup.py
isort aiogqlc tests setup.py
black aiogqlc tests setup.py

.PHONY: lint
lint:
flake8 aiogqlc examples tests setup.py
isort aiogqlc examples tests setup.py --check-only
black aiogqlc examples tests setup.py --check
flake8 aiogqlc tests setup.py
isort aiogqlc tests setup.py --check-only
black aiogqlc tests setup.py --check
mypy aiogqlc

.PHONY: test
Expand Down

0 comments on commit 8d6f02c

Please sign in to comment.