Ruff

Ruff

rootwarp 24b4c4d 619 B Updated

File contents

/ruff

Run Ruff linter and formatter on the Python project using uv.

Instructions

Linting

Check for lint issues:

uv run ruff check .

Auto-fix issues where possible:

uv run ruff check --fix .

Formatting

Format all Python files (79 char line limit per PEP 8):

uv run ruff format .

Check formatting without making changes:

uv run ruff format --check .

Combined

Run both check and format:

uv run ruff check --fix . && uv run ruff format .

Analyze any lint warnings or errors and suggest fixes.

rootwarp/claude-code-plugins-monorepo/tree/main/plugins/python/skills/ruff commit 24b4c4db8c

Frequently asked questions

npx skillmds@latest add rootwarp/ruff