diff options
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 |