You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Agents.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,8 @@ React-admin is a comprehensive frontend framework for building B2B and admin app
19
19
- No children inspection — violates React patterns (exception: Datagrid)
20
20
- No features achievable in pure React — keep the API surface small
21
21
- No comments when code is self-explanatory
22
+
- No dead code — trust your preconditions. Don't guard against conditions that prior code already prevents
23
+
- DRY — don't duplicate knowledge. Coincidental code similarity is not duplication. Only deduplicate when the same decision or fact is expressed in multiple places. Code that looks alike but could evolve independently should stay separate
22
24
23
25
## Codebase Organization
24
26
@@ -83,4 +85,4 @@ Every new feature or API change must be documented.
0 commit comments