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 <noreply@anthropic.com>
This commit is contained in:
cabana8471
2026-01-27 07:00:30 +01:00
parent 03504b3c1a
commit d652b18587

View File

@@ -133,7 +133,7 @@ Create WIDE dependency graphs, not linear chains:
### Infrastructure Feature Descriptions ### Infrastructure Feature Descriptions
**Feature 0 - Database connection established:** **Feature 0 - Database connection established:**
``` ```text
Steps: Steps:
1. Start the development server 1. Start the development server
2. Check server logs for database connection message 2. Check server logs for database connection message
@@ -142,7 +142,7 @@ Steps:
``` ```
**Feature 1 - Database schema applied correctly:** **Feature 1 - Database schema applied correctly:**
``` ```text
Steps: Steps:
1. Connect to database directly (sqlite3, psql, etc.) 1. Connect to database directly (sqlite3, psql, etc.)
2. List all tables in the database 2. List all tables in the database
@@ -151,7 +151,7 @@ Steps:
``` ```
**Feature 2 - Data persists across server restart (CRITICAL):** **Feature 2 - Data persists across server restart (CRITICAL):**
``` ```text
Steps: Steps:
1. Create unique test data via API (e.g., POST /api/items with name "RESTART_TEST_12345") 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) 2. Verify data appears in API response (GET /api/items)
@@ -168,7 +168,7 @@ Steps:
``` ```
**Feature 3 - No mock data patterns in codebase:** **Feature 3 - No mock data patterns in codebase:**
``` ```text
Steps: Steps:
1. Run: grep -r "globalThis\." --include="*.ts" --include="*.tsx" --include="*.js" src/ 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/ 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:** **Feature 4 - Backend API queries real database:**
``` ```text
Steps: Steps:
1. Start server with verbose logging 1. Start server with verbose logging
2. Make API call (e.g., GET /api/items) 2. Make API call (e.g., GET /api/items)