# Lint

> Run linting and formatting checks on codebase

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

---


# Lint and Format Codebase

Run linting on the codebase: $ARGUMENTS

## Available Lint Types
- (no argument) - Run all linters: `just lint`
- `c` or `cpp` - Run C/C++ linting only: `just lint-c`
- `python` or `py` - Run Python linting only: `just lint-python`
- `format` - Format all code: `just format`
- `format-check` - Check formatting without modifying: `just format-check`

## Tools Used
- **C/C++**: cppcheck for static analysis, clang-format for formatting
- **Python**: ruff for linting and formatting

Report any issues found with file locations and descriptions.
For formatting issues, suggest running `just format` to auto-fix.

