Loading...
Loading...
Commenting patterns that improve readability and maintainability.
npx skill4agent add damianwrooby/javascript-clean-code-skills clean-codejs-comments// ❌ Bad
// Increment i by 1
i++;
// ✅ Good
// Retry once to handle flaky network condition
retryRequest();