Skip to main content

An extremely fast Python linter, written in Rust.

Project description

Ruff

Ruff image image image Actions status

Discord | Docs | Playground

An extremely fast Python linter, written in Rust.

Shows a bar chart with benchmark results.

Linting the CPython codebase from scratch.

  • ⚡️ 10-100x faster than existing linters
  • 🐍 Installable via pip
  • 🛠️ pyproject.toml support
  • 🤝 Python 3.11 compatibility
  • 📦 Built-in caching, to avoid re-analyzing unchanged files
  • 🔧 Autofix support, for automatic error correction (e.g., automatically remove unused imports)
  • 📏 Over 500 built-in rules
  • ⚖️ Near-parity with the built-in Flake8 rule set
  • 🔌 Native re-implementations of dozens of Flake8 plugins, like flake8-bugbear
  • ⌨️ First-party editor integrations for VS Code and more
  • 🌎 Monorepo-friendly, with hierarchical and cascading configuration

Ruff aims to be orders of magnitude faster than alternative tools while integrating more functionality behind a single, common interface.

Ruff can be used to replace Flake8 (plus dozens of plugins), isort, pydocstyle, yesqa, eradicate, pyupgrade, and autoflake, all while executing tens or hundreds of times faster than any individual tool.

Ruff is extremely actively developed and used in major open-source projects like:

...and many more.

Read the launch blog post or the most recent project update.

Testimonials

Sebastián Ramírez, creator of FastAPI:

Ruff is so fast that sometimes I add an intentional bug in the code just to confirm it's actually running and checking the code.

Nick Schrock, founder of Elementl, co-creator of GraphQL:

Why is Ruff a gamechanger? Primarily because it is nearly 1000x faster. Literally. Not a typo. On our largest module (dagster itself, 250k LOC) pylint takes about 2.5 minutes, parallelized across 4 cores on my M1. Running ruff against our entire codebase takes .4 seconds.

Bryan Van de Ven, co-creator of Bokeh, original author of Conda:

Ruff is ~150-200x faster than flake8 on my machine, scanning the whole repo takes ~0.2s instead of ~20s. This is an enormous quality of life improvement for local dev. It's fast enough that I added it as an actual commit hook, which is terrific.

Timothy Crosley, creator of isort:

Just switched my first project to Ruff. Only one downside so far: it's so fast I couldn't believe it was working till I intentionally introduced some errors.

Tim Abbott, lead developer of Zulip:

This is just ridiculously fast... ruff is amazing.

Table of Contents

For more, see the documentation.

  1. Getting Started
  2. Configuration
  3. Rules
  4. Contributing
  5. Support
  6. Acknowledgements
  7. Who's Using Ruff?
  8. License

Getting Started

For more, see the documentation.

Installation

Ruff is available as ruff on PyPI:

pip install ruff

You can also install Ruff via Homebrew, Conda, and with a variety of other package managers.

Usage

To run Ruff, try any of the following:

ruff check .                        # Lint all files in the current directory (and any subdirectories)
ruff check path/to/code/            # Lint all files in `/path/to/code` (and any subdirectories)
ruff check path/to/code/*.py        # Lint all `.py` files in `/path/to/code`
ruff check path/to/code/to/file.py  # Lint `file.py`

Ruff can also be used as a pre-commit hook:

- repo: https://github.com/charliermarsh/ruff-pre-commit
  # Ruff version.
  rev: 'v0.0.262'
  hooks:
    - id: ruff

Ruff can also be used as a VS Code extension or alongside any other editor through the Ruff LSP.

Ruff can also be used as a GitHub Action via ruff-action:

name: Ruff
on: [ push, pull_request ]
jobs:
  ruff:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: chartboost/ruff-action@v1

Configuration

Ruff can be configured through a pyproject.toml, ruff.toml, or .ruff.toml file (see: Configuration, or Settings for a complete list of all configuration options).

If left unspecified, the default configuration is equivalent to:

[tool.ruff]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
select = ["E", "F"]
ignore = []

# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]
unfixable = []

# Exclude a variety of commonly ignored directories.
exclude = [
    ".bzr",
    ".direnv",
    ".eggs",
    ".git",
    ".hg",
    ".mypy_cache",
    ".nox",
    ".pants.d",
    ".pytype",
    ".ruff_cache",
    ".svn",
    ".tox",
    ".venv",
    "__pypackages__",
    "_build",
    "buck-out",
    "build",
    "dist",
    "node_modules",
    "venv",
]

# Same as Black.
line-length = 88

# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

# Assume Python 3.10.
target-version = "py310"

[tool.ruff.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10

Some configuration options can be provided via the command-line, such as those related to rule enablement and disablement, file discovery, logging level, and more:

ruff check path/to/code/ --select F401 --select F403 --quiet

See ruff help for more on Ruff's top-level commands, or ruff help check for more on the linting command.

Rules

Ruff supports over 500 lint rules, many of which are inspired by popular tools like Flake8, isort, pyupgrade, and others. Regardless of the rule's origin, Ruff re-implements every rule in Rust as a first-party feature.

By default, Ruff enables Flake8's E and F rules. Ruff supports all rules from the F category, and a subset of the E category, omitting those stylistic rules made obsolete by the use of an autoformatter, like Black.

If you're just getting started with Ruff, the default rule set is a great place to start: it catches a wide variety of common errors (like unused imports) with zero configuration.

Beyond the defaults, Ruff re-implements some of the most popular Flake8 plugins and related code quality tools, including:

For a complete enumeration of the supported rules, see Rules.

Contributing

Contributions are welcome and highly appreciated. To get started, check out the contributing guidelines.

You can also join us on Discord.

Support

Having trouble? Check out the existing issues on GitHub, or feel free to open a new one.

You can also ask for help on Discord.

Acknowledgements

Ruff's linter draws on both the APIs and implementation details of many other tools in the Python ecosystem, especially Flake8, Pyflakes, pycodestyle, pydocstyle, pyupgrade, and isort.

In some cases, Ruff includes a "direct" Rust port of the corresponding tool. We're grateful to the maintainers of these tools for their work, and for all the value they've provided to the Python community.

Ruff's autoformatter is built on a fork of Rome's rome_formatter, and again draws on both the APIs and implementation details of Rome, Prettier, and Black.

Ruff is also influenced by a number of tools outside the Python ecosystem, like Clippy and ESLint.

Ruff is the beneficiary of a large number of contributors.

Ruff is released under the MIT license.

Who's Using Ruff?

Ruff is used by a number of major open-source projects and companies, including:

License

MIT

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ruff-0.0.262.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ruff-0.0.262-py3-none-win_arm64.whl (5.2 MB view details)

Uploaded Python 3Windows ARM64

ruff-0.0.262-py3-none-win_amd64.whl (5.4 MB view details)

Uploaded Python 3Windows x86-64

ruff-0.0.262-py3-none-win32.whl (5.0 MB view details)

Uploaded Python 3Windows x86

ruff-0.0.262-py3-none-musllinux_1_2_x86_64.whl (5.4 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

ruff-0.0.262-py3-none-musllinux_1_2_i686.whl (5.1 MB view details)

Uploaded Python 3musllinux: musl 1.2+ i686

ruff-0.0.262-py3-none-musllinux_1_2_armv7l.whl (4.7 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARMv7l

ruff-0.0.262-py3-none-musllinux_1_2_aarch64.whl (4.9 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

ruff-0.0.262-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

ruff-0.0.262-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ s390x

ruff-0.0.262-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.6 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64le

ruff-0.0.262-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (5.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ppc64

ruff-0.0.262-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl (5.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ i686

ruff-0.0.262-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (4.7 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARMv7l

ruff-0.0.262-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

ruff-0.0.262-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (9.9 MB view details)

Uploaded Python 3macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

ruff-0.0.262-py3-none-macosx_10_7_x86_64.whl (5.1 MB view details)

Uploaded Python 3macOS 10.7+ x86-64

File details

Details for the file ruff-0.0.262.tar.gz.

File metadata

  • Download URL: ruff-0.0.262.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for ruff-0.0.262.tar.gz
Algorithm Hash digest
SHA256 faea54231c265f5349975ba6f3d855b71881a01f391b2000c47740390c6d5f68
MD5 3e156812a2fea98478179d73781820df
BLAKE2b-256 a2fd0f5de09c7fd1fd30778270d961596d6ab843b2cacac6c7a04327b8714621

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-win_arm64.whl.

File metadata

  • Download URL: ruff-0.0.262-py3-none-win_arm64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for ruff-0.0.262-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 f102904ebe395acd2a181d295b98120acd7a63f732b691672977fc688674f4af
MD5 c43701cdb64364e1dcc7a49a7b48e627
BLAKE2b-256 b37ef088f37524c0dee67d453d4eeb8d46dc439c70ae966d365b6eedb45b7113

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-win_amd64.whl.

File metadata

  • Download URL: ruff-0.0.262-py3-none-win_amd64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for ruff-0.0.262-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 973ac29193f718349cf5746b7d86dfeaf7d40e9651ed97790a9b9327305888b9
MD5 932db366729a5ddd3a5144c1d95da27b
BLAKE2b-256 000c9f2741560bdf0f922b9d7714d942d46913433ea0b88f4b5c9944efa68dc1

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-win32.whl.

File metadata

  • Download URL: ruff-0.0.262-py3-none-win32.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: Python 3, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for ruff-0.0.262-py3-none-win32.whl
Algorithm Hash digest
SHA256 15bbfa2d15c137717627e0d56b0e535ae297b734551e34e03fcc25d7642cf43a
MD5 12b51deb8c6d8386f3d3149b5ee5d8aa
BLAKE2b-256 6a830e55b57dd9773f39c3bcad5a9ed87e62a248c721bc1a084fcde32d466bad

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 083bac6e238d8b7d5ac3618666ea63b7ac661cf94c5da160070a58e190082831
MD5 73f719d27681c08f374eac266a55ce9e
BLAKE2b-256 6432425fd707ccb3584199a943885f50d0738083722f2a7c80ce7a529c70b554

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-musllinux_1_2_i686.whl.

File metadata

  • Download URL: ruff-0.0.262-py3-none-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: Python 3, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for ruff-0.0.262-py3-none-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0baff3c9a22227358ea109c165efe62dbdd0f2b9fd5256567dda8682b444fe23
MD5 266d722f8471f51e37e7812a7d6e9c0e
BLAKE2b-256 2781a01281da437ab6d59d28f6077de9ca16feb708da3a694ea75e98de85e822

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c24e678e43ca4b67e29cc9a7a54eea05f31a5898cbf17bfec47b68f08d32a60
MD5 bed4ce3d31348806adf012209483ff43
BLAKE2b-256 b2b077527a1b55f02a36d5feed0b0888acbfe797932faa0831504e652bea63ce

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24f989363e9bb5d0283490298102a5218682e49ebf300e445d69e24bee03ac83
MD5 a6b5ec9be417b78729b704ce80fdf8d4
BLAKE2b-256 7cf92200fe67292c7925edd2d219172265ba7a4aabca45dca6946c34f4e24325

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85ca04348372efc59f6ee808d903d35e0d352cf2c78e487757cd48b65104b83e
MD5 4cbf6f9af1d398ef294133ff7beda13d
BLAKE2b-256 0569e5ba7d18ca8ad24f6a7fd2229f30ff52c7e1528929202194dca4f356aa50

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d25a94996b2037e566c2a801c8b324c0a826194d5d4d90ad7c1ccb8cf06521fa
MD5 d9555d4dabf6005dfcf4728ecd0c4103
BLAKE2b-256 d0ff39d24f60765e294bb5d1d57622f7f39bf66da3ee748e02c1704e89150221

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e2813013a19b3e147e840bdb2e42db5825b53b47364e58e7b467c5fa47ffda2
MD5 dab8af0eda9aeb32358e82fe65c9341d
BLAKE2b-256 aeb0570c2ed3a82a2e5021b6aaa8a4810cac9d8322ae68bc6cf90c17fb339043

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 3909e249d984c4517194005a1c30eaa0c3a6d906c789d9fc0c9c7e007fb3e759
MD5 10430340faaf442ba7c7fd0a9532e943
BLAKE2b-256 68e31eb5c08c68380068d6827ae73cd08f23827adae27e4d34b8c328424a0795

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15bf5533ce169aebbafa00017987f673e879f60a625d932b464b8cdaf32a4fce
MD5 63d8c0ea9a9b48a5265d1cfae83f2472
BLAKE2b-256 1ddd55dcc53ec4c650e0052916ee7788c9844edf98ed6da67d0807bcdab9aa66

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cca35e2aeddff72bb4379a1dabc134e0c0d25ebc754a2cb733a1f8d4dbbb5e0
MD5 dc9505c65e3c03920f88bf3a6f1629e1
BLAKE2b-256 06018227365f0dfef05a14efea32a49019223ac4f1f29c87ad8743481b78da87

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b7e0ca6821aafbd2b059df3119fcd5881250721ca8e825789fd2c471f7c59be
MD5 b230ff852ad2cad247c82515f5895081
BLAKE2b-256 5094d550ce79dc02684121fcd4728ce8db89837a370ae980a92245dc1fd23883

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b379e9765afa679316e52288a942df085e590862f8945088936a7bce3116d8f3
MD5 3663589cbde2a1a152ffec795cd7816c
BLAKE2b-256 2e70dca9a145a60def1f7891933b42c547ebf5d591e7a0679162fa013df08379

See more details on using hashes here.

File details

Details for the file ruff-0.0.262-py3-none-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for ruff-0.0.262-py3-none-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c26c1abd420d041592d05d63aee8c6a18feb24aed4deb6e91129e9f2c7b4914a
MD5 8de37bd7a7f179ee41d10536f88f8d55
BLAKE2b-256 26d9e7b66a2050bfda62f4e731d129a5223ffa4021ba8adf9d841b9dc8eca79e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page