improving-python-code-quality

Installation
SKILL.md

Python Code Quality

Quick Reference

Tool Purpose Command
ruff Lint + format ruff check src && ruff format src
mypy Type check mypy src

Ruff Configuration

Minimal config in pyproject.toml:

[tool.ruff]
line-length = 88
target-version = "py310"
Installs
60
GitHub Stars
44
First Seen
Jan 24, 2026
improving-python-code-quality — wdm0006/python-skills