testing-js
Installation
SKILL.md
When to use me
Use this skill when validating JavaScript files for syntax errors. Do not use this skill for PHP validation.
Step 1: Identify JavaScript files
Find all JS files in the project, excluding node_modules/, build/, and dist/ directories:
find . -name "*.js" -not -path "*/node_modules/*" -not -path "*/build/*" -not -path "*/dist/*"
Step 2: Check syntax
Use Node to check each JS file for syntax errors: