nextfriday-naming
Installation
SKILL.md
Next Friday Naming Conventions
Rules for naming variables, constants, and files.
Variable Naming
Boolean Prefix
Boolean variables must use prefixes: is, has, should, can, did, will
// Bad:
const loading = true;
const visible: boolean = true;
// Good:
const isLoading = true;
const isVisible: boolean = true;