clean-code-principles
Installation
SKILL.md
Clean Code Principles
Practical guidelines for writing readable, maintainable code in TypeScript and React.
Naming
Be Descriptive and Specific
Names should reveal intent. A reader should understand what a variable holds or what a function does without reading its implementation.
// Vague
const d = new Date();
const list = getItems();
function process(data: unknown) {}