From e62f0db61e2ea4bfe9aa0db1c8a79ddd9a5f10bb Mon Sep 17 00:00:00 2001 From: "ryan.danehy@pnnl.gov" Date: Mon, 5 Aug 2024 17:14:10 -0700 Subject: [PATCH] changin pylintrc --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 78d10561..a403223c 100644 --- a/Makefile +++ b/Makefile @@ -62,7 +62,7 @@ test-tox: ## Lint .PHONY: lint -lint: pylint +lint: pylint flake8 .PHONY: pylint pylint: @@ -71,10 +71,10 @@ pylint: # Todo: fix flake8 errors and remove --exit-zero .PHONY: flake8 flake8: - @$(PYTHON3) -m flake8 hypernetx --exit-zero + @$(PYTHON3) -m flake8 --exit-zero hypernetx ## precommit hooks that include formatter (Black) .PHONY: pre-commit pre-commit: pre-commit install - pre-commit run --all-files + pre-commit run --all-files --verbose