Skip to content

Commit e432810

Browse files
iaminaweclaude
andcommitted
fix: add blank lines in code blocks for markdownlint compliance
Added blank lines after opening ``` and before closing ``` in two code block examples to satisfy markdownlint MD031 rule. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 098785a commit e432810

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

prompts/generate-codebase-context.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -808,10 +808,12 @@ For each integration:
808808

809809
**Example - Request Flow:**
810810
```
811+
811812
API endpoint (file.ts:line)
812813
→ Service method (file.ts:line)
813814
→ Repository method (file.ts:line)
814815
→ Database query
816+
815817
```
816818
817819
### Architectural Patterns
@@ -864,13 +866,15 @@ List patterns with evidence and confidence:
864866
865867
**Example - User Login:**
866868
```
869+
867870
1. POST /api/auth/login → src/api/routes/auth.ts:23
868871
2. Validation middleware → src/api/middleware/validator.ts:8
869872
3. AuthService.login() → src/services/AuthService.ts:45
870873
4. UserRepository.findByEmail() → src/repositories/UserRepository.ts:34
871874
5. Password verify → src/utils/bcrypt.ts:15
872875
6. Generate JWT → src/utils/jwt.ts:12
873876
7. Return { token, user } → src/api/routes/auth.ts:34
877+
874878
```
875879
876880
---

0 commit comments

Comments
 (0)