Files
gh-johnclyde-clydehub/commands/lint-fix.md
2025-11-30 08:28:27 +08:00

520 B

description
description
Run linters and automatically fix all issues

Run all available linters and fix issues:

  1. Detect linter configuration files in project
  2. Run linters with auto-fix enabled:
    • For JavaScript/TypeScript: pnpm biome check --write
    • For Python: uv run ruff check --fix, uv run ruff format
    • For other detected linters with fix capabilities
  3. Stage all fixed files
  4. Report summary of fixes applied

IMPORTANT: Only run linters that exist in the project. Do not suggest installing new ones.