From d652b1858769f8dba63f2932209d7fedc420fed6 Mon Sep 17 00:00:00 2001 From: cabana8471 Date: Tue, 27 Jan 2026 07:00:30 +0100 Subject: [PATCH] fix: add language tags to fenced code blocks per CodeRabbit/markdownlint Added 'text' language identifier to all fenced code blocks in the Infrastructure Feature Descriptions section to satisfy MD040. Co-Authored-By: Claude Opus 4.5 --- .claude/templates/initializer_prompt.template.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.claude/templates/initializer_prompt.template.md b/.claude/templates/initializer_prompt.template.md index ccf1f98..08274ec 100644 --- a/.claude/templates/initializer_prompt.template.md +++ b/.claude/templates/initializer_prompt.template.md @@ -133,7 +133,7 @@ Create WIDE dependency graphs, not linear chains: ### Infrastructure Feature Descriptions **Feature 0 - Database connection established:** -``` +```text Steps: 1. Start the development server 2. Check server logs for database connection message @@ -142,7 +142,7 @@ Steps: ``` **Feature 1 - Database schema applied correctly:** -``` +```text Steps: 1. Connect to database directly (sqlite3, psql, etc.) 2. List all tables in the database @@ -151,7 +151,7 @@ Steps: ``` **Feature 2 - Data persists across server restart (CRITICAL):** -``` +```text Steps: 1. Create unique test data via API (e.g., POST /api/items with name "RESTART_TEST_12345") 2. Verify data appears in API response (GET /api/items) @@ -168,7 +168,7 @@ Steps: ``` **Feature 3 - No mock data patterns in codebase:** -``` +```text Steps: 1. Run: grep -r "globalThis\." --include="*.ts" --include="*.tsx" --include="*.js" src/ 2. Run: grep -r "dev-store\|devStore\|DevStore\|mock-db\|mockDb" --include="*.ts" --include="*.tsx" --include="*.js" src/ @@ -182,7 +182,7 @@ Steps: ``` **Feature 4 - Backend API queries real database:** -``` +```text Steps: 1. Start server with verbose logging 2. Make API call (e.g., GET /api/items)