# Source Command Lint

> Run all linters and code quality checks

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

---


# source-command-lint

Use this skill when the user asks to run the migrated source command `lint`.

## Command Template

Run comprehensive code quality checks on the project.

Execute the following checks:

1. Black formatting check: `black --check src/ tests/`
2. isort import sorting check: `isort --check-only src/ tests/`
3. Ruff linting: `ruff check src/ tests/`
4. MyPy type checking: `mypy src/`

Report back with:

- List of any formatting issues
- Import sorting problems
- Linting errors or warnings
- Type checking errors
- Suggested fixes for any issues found

If there are issues, ask if I should auto-fix them.

