diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-02-02 00:40:10 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-02-02 00:40:10 +0100 |
commit | 727f44887e0612b54010704dc997fd2ebd8b0344 (patch) | |
tree | ed9cd5d4786658b217ac1522deea60f80ed25407 | |
parent | 661b3b7ac12bead80253e11b392413627d7d8c12 (diff) | |
download | fuzzycat-727f44887e0612b54010704dc997fd2ebd8b0344.tar.gz fuzzycat-727f44887e0612b54010704dc997fd2ebd8b0344.zip |
make: converge to fmt
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,8 +15,8 @@ deps: ## Install dependencies from setup.py into pipenv # version, https://github.com/microsoft/vscode-python/issues/5171 pipenv install --pre '-e .[dev]' -.PHONY: style -style: ## Apply import sorting and yapf source formatting on all files +.PHONY: fmt +fmt: ## Apply import sorting and yapf source formatting on all files isort --atomic fuzzycat/* yapf -p -i -r fuzzycat/* yapf -p -i -r tests |