paniolo-typescript-best-practices
Installation
SKILL.md
Requires: file-read, terminal (linting/testing). No network access needed.
Full reference: typescript-typescript
- Editing any
.tsor.tsxfile. - Resolving TypeScript strictness or lint errors related to typing quality.
Execution workflow
- Apply relevant rules below (each links to the full doc for examples).
- Keep changes minimal and local to the problem area.
- Run
npm run lintafter meaningful TS changes.
Key rules
- No
any— useunknown+ type guards instead. typescript-avoid-any