Agent skill
python-linting
This skill helps lint Python code using ruff. Use when the user asks to "lint", "check code quality", or "fix style issues".
Stars
163
Forks
31
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/linting
Metadata
Additional technical details for this skill
- author
- openhands
- version
- 1.0
SKILL.md
Python Linting Skill
This skill provides instructions for linting Python code using ruff.
How to Lint
Run ruff to check for issues:
bash
ruff check .
To automatically fix issues:
bash
ruff check --fix .
Common Options
--select E,W- Only check for errors and warnings--ignore E501- Ignore line length errors--fix- Automatically fix fixable issues
Example Output
example.py:1:1: F401 [*] `os` imported but unused
example.py:5:5: E302 Expected 2 blank lines, found 1
Found 2 errors (1 fixable).
Didn't find tool you were looking for?