Lint typecheck
Skill aiskillstore/marketplace/skills/applelamps/lint-typecheck
Security-audited skills for Claude, Codex & Claude Code. One-click install, quality verified.
npx -y skills add aiskillstore/marketplace --skill lint-typecheckAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
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.
SKILL.md
1.0 KB, as published. Nobody here has run it
Lint and Type Check
Instructions
-
Navigate to frontend directory and run lint:
cd frontend && npm run lint -
Run TypeScript compilation check (no emit):
cd 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