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 1/2] 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 From f045e7d9929939ef3faf58b5f55c37a2b362c8c0 Mon Sep 17 00:00:00 2001 From: dkay Date: Sat, 13 Jun 2026 01:40:38 -0700 Subject: [PATCH 2/2] Add changelog entry for ci changes --- changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.md b/changelog.md index 2d1813bac..2bec76f6b 100644 --- a/changelog.md +++ b/changelog.md @@ -8,6 +8,7 @@ Changes since 2026.06.04 - The presence intent is no longer requested - Add property to make application commands always enabled regardless of guild config - Adds a docker ignore file to slim down the size of the docker container +- Make the check-format make task run the same CI as is run on GitHub # Modules