Marketplace lint
How to lint and typecheck in this project. Load when implementing or verifying code.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/clouder0/lint" ~/.claude/skills/aiskillstore-marketplace-lint && rm -rf "$T"
manifest:
skills/clouder0/lint/SKILL.mdsource content
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.