javascript-human-made

Installation
SKILL.md

Human Made JavaScript Standards

Modern JavaScript (ES6+)

  • Prefer const over let; never use var
  • 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
Related skills
Installs
1
GitHub Stars
2
First Seen
14 days ago