From 4f136b91d0ab7a21ac2f1b87542d8e70116be9e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniele=20Vigan=C3=B2?= Date: Sun, 18 Jan 2026 23:34:08 +0100 Subject: [PATCH] docs: add blank line whitespace rule to AGENTS.md Specify that blank lines must not contain any whitespace (spaces or tabs) to maintain code cleanliness and PEP 8 compliance --- AGENTS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/AGENTS.md b/AGENTS.md index 79d05ae..ec140e0 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -128,6 +128,7 @@ python manage.py runserver --noreload # With pyinstrument middleware - **Long lines**: Use `# noqa: E501` comment when necessary (see settings.py) - **Indentation**: 4 spaces (no tabs) - **Encoding**: UTF-8 +- **Blank lines**: Must not contain any whitespace (spaces or tabs) ### Import Organization Follow Django's import style (as seen in models.py, views.py, admin.py):