#flake8
- flake8-comprehensions
- flake8-logging
- flake8-no-pep420
- flake8-tidy-imports
- heroicons
- inline-snapshot-django
- patchy
- pip-lock
- pygments-git
- pytest-flake8-path
- pytest-randomly
- pytest-restrict
- pytest-reverse
- sql-impressao
- time-machine
- treepoem
…
September 10, 2025 at 1:08 PM
"Why flake8? I use Ruff"
I'm just a dog.

Sat in front of your code.

Silently judging it.
March 15, 2025 at 11:47 AM
Rust is quietly replacing Python internals for speed.
Polars replaced pandas internals.
Ruff replaced flake8.
uv replaced pip.
Now dbt follows the same pattern.

If you're starting a new project today, check what this means for your stack.
May 14, 2026 at 6:45 AM
I use flake8 (style mostly) and pylint. Pylint is good at catching undefined/unused variables
March 26, 2024 at 6:45 PM
July 10, 2026 at 7:07 AM
Python solves these problems with really smart linters (flake8, mypy, etc). JavaScript solves these problems with linters and eventually moving to TypeScript.
December 1, 2024 at 6:08 AM
Which python linter is your favorite and why?

Ruff, pylint, flake8 etc?
May 9, 2025 at 7:36 AM
Old #Python: black + flake8 + isort -- three tools, three configs.
New Python: ruff

Everyone loves ruff, which lints + reformats your code in milliseconds.

This (and more!) in my upcoming "python --update" course: buff.ly/2RRGoXD
July 7, 2026 at 2:31 PM
Install Pylint and Flake8 with Pip. They will make you a much better Python programmer. #GISchat
December 13, 2024 at 8:00 AM
sphinx-intl のflake8をruff checkにしてついでにruff formatも導入
github.com/sphinx-doc/s... Modernize formatter: use ruff instead of flake8 by shimizukawa · Pull Request #103 · sphinx-doc/sphinx-intl · GitHub
#pyhack
Modernize formatter: use ruff instead of flake8 by shimizukawa · Pull Request #103 · sphinx-doc/sphinx-intl
A Sphinx utility that make it easy to translate and to apply translations. - Modernize formatter: use ruff instead of flake8 by shimizukawa · Pull Request #103 · sphinx-doc/sphinx-intl
github.com
April 27, 2024 at 9:01 AM
Acabo d'alliberar una nova versio de flake8-nested-fstrings!

github.com/mrswats/flak...

Amb suport per python 3.14.

#Python #Flake8 #CodeQuality
GitHub - mrswats/flake8-nested-fstrings: A flake8 plugin which forbids nested fstrings.
A flake8 plugin which forbids nested fstrings. Contribute to mrswats/flake8-nested-fstrings development by creating an account on GitHub.
github.com
November 22, 2025 at 7:28 PM
{
"TSA",
"seatbelts in a Waymo",
"flake8",
}
June 23, 2025 at 8:14 PM
🐍📺 Writing Cleaner Python Code With PyLint [Video]

In this video series you'll see how to install and set up the PyLint code linter tool. You'll learn why you should use code linters like PyLint, Flake8, PyFlakes, or other static analysis tools
#python
Writing Cleaner Python Code With PyLint
In this video series you'll see how to install and set up the PyLint code linter tool. You'll learn why you should use code linters like PyLint, Flake8, PyFlakes, or other static analysis tools—and how they can help you write cleaner and more Pythonic ...
realpython.com
November 4, 2025 at 3:00 AM
Just released! 🚀

flake8-implicit-str-concat 0.6.0:

A Flake8 plugin to encourage correct string literal concatenation

I hear there's another big release tomorrow? This release adds support for Python 3.14 and drops 3.9.

github.com/flake8-impli...
#Python #flake8 #release #Python314 #Python39
Release 0.6.0 · flake8-implicit-str-concat/flake8-implicit-str-concat
What's Changed Add support for Python 3.14 by @hugovk in #70 Drop support for Python 3.9 by @hugovk in #71 Update LICENSE by @graingert-osi in #64 Update release checklist by @hugovk in #61 Test P...
github.com
October 6, 2025 at 11:21 AM
Let's have a go at pdb, mypy, pyright, black, autopep8, flake8, ruff, pylint...

www.bitecode.dev/p/you-are-co...

"A linter is a program that will read your code, and tell you that you have wasted your life."
September 10, 2023 at 9:19 AM
🧠 Writing Python code? Make it clean, tested, and ready to scale.
Join our hybrid VSC training on Python Software Engineering

Learn:
🔹 argparse, configparser
🔹 docstring, mkdocs
🔹 flake8, pylint
🔹 pytest, OOP & design patterns

📍 Info & registration: www.vscentrum.be/events/pytho...
April 14, 2025 at 10:08 AM
"Fix these flake8 errors" had the most satisfactory results ive seen so far
November 4, 2025 at 1:29 AM
Ruff ... Never know if it has done anything at its speed....so flake8
May 9, 2025 at 7:42 AM
We have finally documented Ruff – the tool greatly simplifies static code analysis for Python projects: www.python4data.science/en/latest/pr...
#Python #Ruff
Ruff
Ruff is an extremely fast Python linter and code formatter written in Rust that can enforce the rules of flake8, isort, perflint, Black, Bandit, and others. In total, Ruff can check over 800 rules....
www.python4data.science
August 25, 2025 at 2:30 PM
普段触る Python プロジェクトの linter/formatter を ruff/black に揃えた。isort も flake8 も消せてスッキリ
September 6, 2023 at 3:31 AM
The tooling has quietly leveled up. Rust ate the linter ecosystem:

- Ruff (Python) — replaces Flake8, isort, Black
- Biome (JS/TS) — replaces ESLint + Prettier
- Both 10-1000x faster

Astral (the Ruff team) joined OpenAI's Codex group in March. That's a signal.
May 11, 2026 at 6:04 PM
flake8 is my new sworn enemy btw. let me write lines longer than 80 character you evil linter
April 14, 2025 at 10:07 PM
Python をどうしても書かなきゃいけない環境で pyenv + Poetry + Flake8 + Black + isort + mypy とかやっていたけれど、最近は Rye + uv + Ruff + mypy という感じなのか
February 28, 2024 at 2:31 PM