Skip to content

Commit 4092f9e

Browse files
committed
fix numbering again.
1 parent dafc856 commit 4092f9e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

blog/agentic-coding-guidelines.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export const userRoute = createRoute({
103103
});
104104
```
105105

106-
## 5. Consolidate Linting and Formatting at Root Level
106+
## 6. Consolidate Linting and Formatting at Root Level
107107

108108
Centralize linting and formatting configurations at the monorepo root to ensure consistency.
109109

@@ -116,7 +116,7 @@ Centralize linting and formatting configurations at the monorepo root to ensure
116116
}
117117
```
118118

119-
## 6. Avoid Overly Interdependent Configuration Systems
119+
## 7. Avoid Overly Interdependent Configuration Systems
120120

121121
Favor self-contained, independent configuration files per package rather than complex inheritance:
122122

@@ -131,7 +131,7 @@ root/
131131
tsconfig.json
132132
```
133133

134-
## 7. Type-Driven Development
134+
## 8. Type-Driven Development
135135

136136
Use comprehensive, precise types to enforce correctness at compile-time rather than relying on runtime validation.
137137

@@ -145,7 +145,7 @@ type User = {
145145
};
146146
```
147147

148-
## 8. Consistent, Predictable File Organization
148+
## 9. Consistent, Predictable File Organization
149149

150150
Maintain consistent file structures for components:
151151

@@ -158,7 +158,7 @@ components/
158158
index.ts
159159
```
160160

161-
## 9. Test-Case Driven Documentation
161+
## 10. Test-Case Driven Documentation
162162

163163
Write clear, self-explanatory tests that also serve as documentation:
164164

0 commit comments

Comments
 (0)