From 20b2d2040cd02d9f92dcf80a95e425dc2bd4a553 Mon Sep 17 00:00:00 2001 From: aitbc Date: Sun, 19 Apr 2026 20:35:19 +0200 Subject: [PATCH] docs: fix markdown formatting in DOTENV_DISCIPLINE.md Added blank lines after list introductions to fix markdown rendering of bullet lists. --- docs/policies/DOTENV_DISCIPLINE.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/policies/DOTENV_DISCIPLINE.md b/docs/policies/DOTENV_DISCIPLINE.md index c451c0d3..0729c1c4 100644 --- a/docs/policies/DOTENV_DISCIPLINE.md +++ b/docs/policies/DOTENV_DISCIPLINE.md @@ -16,6 +16,7 @@ silent configuration issues where: ### **Focused Dotenv Linter** Created a sophisticated linter that: + - **Scans all code** for actual environment variable usage - **Filters out script variables** and non-config variables - **Compares with `.env.example`** to find drift @@ -142,6 +143,7 @@ Created `.github/workflows/dotenv-check.yml` with: ### **Workflow Triggers** The dotenv check runs on: + - **Push** to any branch (when relevant files change) - **Pull Request** (when relevant files change) - File patterns: `.env.example`, `*.py`, `*.yml`, `*.toml`, `*.sh`