From 2e2b9ebd00a721bf306c5881d7d1fdf2e5d5044a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alessandro=20Pezz=C3=A8?= Date: Wed, 17 Dec 2025 03:46:23 +0100 Subject: [PATCH] chore: exclude scripts folder And newly added scripts folder under pokeapi/sprites when pulled as submodule --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b2155582..8f123587 100755 --- a/Makefile +++ b/Makefile @@ -87,10 +87,10 @@ docker-prod: docker-setup: docker-up docker-migrate docker-build-db # (Docker) Start services, prepare the latest DB schema, populate the DB format: # Format the source code - black . + black . --extend-exclude '.+/scripts/.+' format-check: # Check the source code has been formatted - black . --check --exclude 'Resources/scripts/.*' + black . --check --extend-exclude '.+/scripts/.+' pull: git checkout master