aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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