Agent skill
lint-typecheck
Run ESLint and TypeScript type checking on the frontend codebase. Use when user mentions "lint", "type check", "check code", "eslint", "tsc", or before committing changes.
Stars
232
Forks
15
Install this agent skill to your Project
npx add-skill https://github.com/aiskillstore/marketplace/tree/main/skills/applelamps/lint-typecheck
SKILL.md
Lint and Type Check
Instructions
-
Navigate to frontend directory and run lint:
bashcd frontend && npm run lint -
Run TypeScript compilation check (no emit):
bashcd frontend && npx tsc -b --noEmit -
If errors are found:
- List all errors with file locations
- Offer to fix auto-fixable ESLint issues:
npm run lint -- --fix - For TypeScript errors, identify the type mismatches
-
Report summary: X lint warnings, Y lint errors, Z type errors
Examples
- "Run lint on the frontend"
- "Check for type errors"
- "Validate code before commit"
Guardrails
- Run in read-only mode first; only apply
--fixwith user confirmation - Do not modify tsconfig.json to suppress errors
- Report all issues before attempting fixes
Didn't find tool you were looking for?