From b1ad46e12e5d76b613079a2ef5debcef78956502 Mon Sep 17 00:00:00 2001 From: ajax146 <31014239+ajax146@users.noreply.github.com> Date: Sat, 3 May 2025 23:39:35 -0400 Subject: [PATCH] Add flake8 and pylint to check-format --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index eea8477b4..52332cc77 100644 --- a/Makefile +++ b/Makefile @@ -12,9 +12,11 @@ make sync: python3 -m pipenv sync -d check-format: - black --check ./ - isort --check-only ./ --profile black - + black $(shell git rev-parse --show-toplevel) --check + pylint $(shell git ls-files '*.py') + flake8 $(shell git rev-parse --show-toplevel) + isort --check-only $(shell git rev-parse --show-toplevel)/ --profile black + format: black ./ isort ./ --profile black