aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Czygan <martin.czygan@gmail.com>2020-11-04 20:42:54 +0100
committerMartin Czygan <martin.czygan@gmail.com>2020-11-04 20:42:54 +0100
commit321beac2b8b724532103ccc872becda33f33cd77 (patch)
treeff6500d694b5e89935b6e22f63916db886ed9474 /Makefile
parent99228171f2e0668de744dae71ad66085234be356 (diff)
downloadfuzzycat-321beac2b8b724532103ccc872becda33f33cd77.tar.gz
fuzzycat-321beac2b8b724532103ccc872becda33f33cd77.zip
address pylint issues
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3e98846..80cf6a2 100644
--- a/Makefile
+++ b/Makefile
@@ -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