FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Ruff Has a Free API — The Python Linter That's 100x Faster Than Flake8
How-ToProgramming Languages

Ruff Has a Free API — The Python Linter That's 100x Faster Than Flake8

via Dev.to PythonAlex Spinov3h ago

TL;DR Ruff is a Python linter and formatter written in Rust that replaces Flake8, isort, Black, pyupgrade, and dozens more tools — all in one binary. It's 10-100x faster and supports 800+ lint rules. What Is Ruff? Ruff by Astral is the new standard for Python tooling: 100x faster — written in Rust, lints in milliseconds Drop-in replacement — for Flake8, isort, Black, pyupgrade, pydocstyle 800+ rules — the most comprehensive Python linter Auto-fix — automatically fixes most issues Built-in formatter — Black-compatible, 100x faster Free — MIT license Quick Start # Install pip install ruff # Lint ruff check . # Lint and auto-fix ruff check --fix . # Format (like Black, but faster) ruff format . Configuration # pyproject.toml [tool.ruff] target-version = "py312" line-length = 88 [tool.ruff.lint] select = [ "E" , # pycodestyle errors "W" , # pycodestyle warnings "F" , # pyflakes "I" , # isort "N" , # pep8-naming "UP" , # pyupgrade "B" , # flake8-bugbear "SIM" , # flake8-simplify "C4" , # fl

Continue reading on Dev.to Python

Opens in a new tab

Read Full Article
2 views

Related Articles

Before We Write a Single Data Structure, We Need to Talk
How-To

Before We Write a Single Data Structure, We Need to Talk

Medium Programming • 3h ago

How-To

How to implement the Outbox pattern in Go and Postgres

Lobsters • 4h ago

The Hidden Algorithm Behind Google Maps Traffic!!!!
How-To

The Hidden Algorithm Behind Google Maps Traffic!!!!

Medium Programming • 4h ago

Percentage Change: The Most Misused Metric in Data Analysis (And How to Calculate It Correctly)
How-To

Percentage Change: The Most Misused Metric in Data Analysis (And How to Calculate It Correctly)

Medium Programming • 9h ago

I Missed This Claude Setting at First. And It Actually Matters
How-To

I Missed This Claude Setting at First. And It Actually Matters

Medium Programming • 10h ago

Discover More Articles