javascript-human-made
Installation
SKILL.md
Human Made JavaScript Standards
Modern JavaScript (ES6+)
- Prefer
constoverlet; never usevar - Use arrow functions for callbacks and context binding
- Use destructuring and spread operators
- Prefer functional programming (
.map(),.filter(),.reduce()) over imperative loops - Use template literals for string interpolation
- Use async/await over raw Promises where possible
Code Conventions
- Trailing commas in multi-line arrays and objects
- Semicolons end every statement
- Avoid Yoda conditions
- One class per file with
export default - Use named exports for utilities and helpers