diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-11-04 20:42:54 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-11-04 20:42:54 +0100 |
commit | 321beac2b8b724532103ccc872becda33f33cd77 (patch) | |
tree | ff6500d694b5e89935b6e22f63916db886ed9474 /Makefile | |
parent | 99228171f2e0668de744dae71ad66085234be356 (diff) | |
download | fuzzycat-321beac2b8b724532103ccc872becda33f33cd77.tar.gz fuzzycat-321beac2b8b724532103ccc872becda33f33cd77.zip |
address pylint issues
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,5 +1,6 @@ SHELL := /bin/bash FATCAT_BULK_EXPORT_ITEM := fatcat_bulk_exports_2020-08-05 +PY_FILES := $(shell find fuzzycat -name '*.py') .PHONY: help help: ## Print info about all commands @@ -28,6 +29,10 @@ dist: ## Create source distribution and wheel cov: ## Run coverage report pytest --cov=fuzzycat tests/ +.PHONY: lint +lint: $(PY_FILES) + pylint fuzzycat + .PHONY: clean clean: ## Clean all artifacts rm -rf build |