# Lint

> How to lint and typecheck in this project. Load when implementing or verifying code.

- Skill: `aiskillstore/lint` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add aiskillstore/lint`
- Raw SKILL.md: https://api.skillmd.com/api/skills/aiskillstore/lint/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: aiskillstore (https://skillmd.com/u/aiskillstore)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/aiskillstore/lint

---


# Lint Skill

Project-specific linting and typechecking.

## Lint Commands

```bash
# Run linter
# TODO: Add your lint command
npx eslint {files}
# ruff check {files}
# golangci-lint run

# Auto-fix
npx eslint {files} --fix
# ruff check {files} --fix
```

## Typecheck Commands

```bash
# Run typecheck
# TODO: Add your typecheck command
npx tsc --noEmit
# mypy {files}
# go build ./...
```

## Common Issues

### Import Order
Run auto-fix to sort imports.

### Unused Variables
Remove or prefix with `_`.

### Type Errors
Check that types match expected signatures.

