Claude Code Plugins

Community-maintained marketplace

Feedback

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

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name lint
description How to lint and typecheck in this project. Load when implementing or verifying code.
allowed-tools Bash

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.