From 321beac2b8b724532103ccc872becda33f33cd77 Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Wed, 4 Nov 2020 20:42:54 +0100 Subject: address pylint issues --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile') 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 -- cgit v1.2.3