.claude/skills/lint/SKILL.md
Run linting and type checking across the Terrae codebase
npx skillsauth add alamenai/terrae lintInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Run linting and type checking across the Terrae codebase.
Run Type Checking
npx tsc --noEmit
This checks TypeScript types without emitting files.
Run ESLint
npm run lint
This runs ESLint on the codebase.
Run Prettier Check
npm run format:check
This checks if files are properly formatted.
Report Results
Offer to Fix If issues are found, ask the user if they want to:
npm run lint -- --fixnpm run formatRe-verify After fixes, run the checks again to confirm all issues are resolved.
testing
Run tests for Terrae components
development
Review code changes implemented in the current session before committing
development
Prepare a Terrae component for release by running all checks and builds
tools
Commit, push, and open a pull request on GitHub