Skip to content

Commit

Permalink
remove -q option (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
awichmann-mintel authored Jul 29, 2020
1 parent ddecd23 commit ee2cfa0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/python/Makefile.style
Original file line number Diff line number Diff line change
Expand Up @@ -44,27 +44,27 @@ python/autoflake: bh/venv
.PHONY: python/isort/check
## Check python imports using isort
python/isort/check:
@$(DOCKER) pull -q alphachai/isort
@$(DOCKER) pull alphachai/isort
@$(MAKE) python/lint/announce/isort
@$(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/isort $(ISORT_FLAGS) --check-only $(PYTHON_LINT_TARGETS) --diff

.PHONY: python/isort
## Fix python imports using isort
python/isort:
@$(DOCKER) pull -q alphachai/isort
@$(DOCKER) pull alphachai/isort
$(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/isort $(ISORT_FLAGS) $(PYTHON_LINT_TARGETS)

.PHONY: python/black/check
## Check python files using black
python/black/check:
@$(DOCKER) pull -q alphachai/black
@$(DOCKER) pull alphachai/black
@$(MAKE) python/lint/announce/black
@$(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/black --check $(PYTHON_LINT_TARGETS)

.PHONY: python/black
## Reformat python files using black
python/black:
@$(DOCKER) pull -q alphachai/black
@$(DOCKER) pull alphachai/black
$(DOCKER) run -it --rm --user $$(id -u):$$(id -g) --mount type=bind,src=$$(pwd),dst=/app alphachai/black $(PYTHON_LINT_TARGETS)

.PHONY: python/flake8
Expand Down

0 comments on commit ee2cfa0

Please sign in to comment.