Agent Skills: Lint Skill

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

UncategorizedID: aiskillstore/marketplace/lint

Install this agent skill to your local

pnpm dlx add-skill https://github.com/aiskillstore/marketplace/tree/HEAD/skills/clouder0/lint

Skill Files

Browse the full folder contents for lint.

Download Skill

Loading file tree…

skills/clouder0/lint/SKILL.md

Skill Metadata

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

Lint Skill

Project-specific linting and typechecking.

Lint Commands

# 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

# 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.