From d847bd1f0c260b13aa47a7849deab36537aed81f Mon Sep 17 00:00:00 2001 From: patchwright Date: Sun, 12 Jul 2026 00:18:59 +0200 Subject: [PATCH] Add wildlint to Linters (General) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ba2a9e0..38fe868 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ Feel free to contribute! Happy to receive PRs. [https://github.com/PyCQA/pylint](https://github.com/PyCQA/pylint) * flake8-bugbear - A plugin for flake8 finding likely bugs and design problems in your program. Contains warnings that don't belong in pyflakes and pycodestyle: [https://github.com/PyCQA/flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) + * wildlint - Static checks for bug classes off-the-shelf linters (ruff/flake8/pylint) miss — dead argparse flags, str.replace-as-strip (removeprefix/removesuffix mixups), deep negative indexing, humanizer rounding rollover. Each rule distilled from a real upstream fix. Cross-language (Python/JS/TS/Go/Rust). [https://github.com/patchwright/wildlint](https://github.com/patchwright/wildlint) * vulture - Find dead code: [https://pypi.python.org/pypi/vulture](https://pypi.python.org/pypi/vulture) * pydiatra - Yet another static checker for Python code: