ruff
ruff is a Python linter and code formatter written in Rust. Created by Astral (the makers of uv and ty), ruff aims to replace multiple Python code quality tools (like flake8, Black, isort, and pyupgrade) with a single high-performance solution.
Key Features
- Linting: Checks code for errors, style violations, and potential problems using
ruff check - Formatting: Automatically formats code to follow style conventions using
ruff format - Import Sorting: Orders and groups Python imports systematically
- Code Upgrades: Modernizes Python code syntax automatically (e.g. replacing deprecated patterns with modern equivalents)
- Configuration: Uses standard pyproject.toml for settings
Core Capabilities
Linting Rules
ruff supports over 800 lint rules drawn from dozens of existing tools:
- Style checking (PEP 8, via pycodestyle rules)
- Error detection (via pyflakes rules)
- Complexity checking (via mccabe rules)
- Best practice enforcement (e.g. flake8-bugbear, flake8-simplify)
- Type annotation validation (e.g. flake8-annotations)
- Documentation checking (e.g. pydocstyle)
- Code modernization (via pyupgrade rules)
Rules can be individually enabled or disabled, and many include auto-fix support.
Performance
- Written in Rust for exceptional speed
- 10-100x faster than traditional Python tools like flake8 and Black
- Parallel processing for large codebases
- Incremental checking for changed files
- Caching of results
Suppressing Rules
ruff supports three levels of rule suppression:
Line-level: Add # noqa: {code} to the end of a line to suppress a specific rule for that line:
x = 1 # noqa: F841Block-level: Use # ruff: disable[{code}] and # ruff: enable[{code}] comments to suppress rules for a range of lines:
# ruff: disable[E501]
VALUE_1 = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore"
VALUE_2 = "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo"
# ruff: enable[E501]File-level: Add # ruff: noqa: {code} near the top of a file to suppress a rule for the entire file:
# ruff: noqa: F841Integration
- IDE plugins for real-time feedback
- CI/CD pipeline support
- Pre-commit hook integration
- Command line interface
- Language server protocol (LSP) support
Usage
# Lint the current directory
ruff check .
# Lint and apply auto-fixes
ruff check --fix .
# Format code
ruff format .
# Check formatting without modifying files
ruff format --check .Advantages
- Single tool replacing many others
- Exceptional performance
- Active development and community
- Standardized configuration via pyproject.toml
- IDE integration via language server
Limitations
- Some advanced Python static analysis features are still in development
- May require an adjustment period for teams used to multiple tools
Learn More
Also Mentioned In
- Charlie Marsh on uv, Coding Agents, and the Changing Open Source Contract
- uvx.sh: Install Python tools without uv or Python
- ty is Built with AI
- prek: pre-commit, but fast
- uv format: Code Formatting Comes to uv (experimentally!)
- Google Sunsets Pytype: The End of an Era for Python Type Checking
- ty's Breakthrough: Why Incremental Analysis Matters for Python
- How Python's RFC Process Paved the Way for uv, Ruff, and Ty
- Pyrefly: Meta's New Type Checker for Python
- The Python Tooling Revolution
- Black
- flake8
- How to configure recommended Ruff defaults
- How to migrate from mypy to ty
- How to set up pre-commit hooks for a Python project
- How to set up prek hooks for a Python project
- How to sort Python imports with Ruff
- Modern Python Project Setup Guide for AI Assistants
- pylint
- pyproject.toml
- ty