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: CLAUDE.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -190,3 +190,10 @@ Requires Node >= 20.
190
190
* If something goes sideways, STOP and re-plan immediately – don't keep pushing
191
191
* Use plan mode for verification steps, not just building
192
192
* Write detailed specs upfront to reduce ambiguity
193
+
194
+
### 2. Never Ignore Lint Warnings
195
+
196
+
* Never silently skip or dismiss linting/formatting warnings — always check whether they are relevant to the current change
197
+
* If a warning fires on code you touched, fix it
198
+
* If a warning fires on code you didn't touch, mention it to the user but don't fix it (per the "Do not clean up lint/format issues in files you aren't working on" rule in Parallel Sessions)
199
+
* Run `npm run lint` after editing code and review the output — do not assume warnings are spurious
0 commit comments