What problem does it solve? JavaScript and TypeScript codebases often become inconsistent when multiple contributors use different conventions for variable declarations, comparisons, functions, and formatting. This Skill enforces Spatie's published JavaScript guidelines so every piece of JS/TS code follows one consistent, readable standard. ## Core Features & Use Cases - Code Style Enforcement: Applies rules for const over let, strict === comparisons, descriptive variable names, and proper function declaration styles. - Destructuring & Method Syntax: Promotes array/object destructuring and shorthand object method syntax over verbose alternatives. - Prettier Configuration Guidance: Defines Spatie's Prettier conventions including 4-space indentation, 120-character print width, and single quotes. - Use Case: When refactoring a Vue component or reviewing a TypeScript pull request, activate this Skill to ensure the code matches Spatie's conventions before committing. ## Quick Start Review this JavaScript file and refactor it to follow Spatie's JavaScript coding guidelines.