# Lint Fix

> Run the project linter and formatter, fix all violations.

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

---


Run the linter and formatter for this project and fix all issues.

Steps:
1. Detect the linter from project config:
   - Python: ruff check . --fix && ruff format .
   - JavaScript/TypeScript: npx eslint --fix . && npx prettier --write .
   - Rust: cargo clippy --fix && cargo fmt
   - Go: golangci-lint run --fix && gofmt -w .
2. Run the appropriate commands.
3. If auto-fix doesn't resolve everything, read the remaining errors and fix
   them manually.
4. Re-run the linter to confirm zero violations.
5. Report: violations found, auto-fixed, manually fixed, remaining.

