From 5f709cd3e033cb11bdf6ecea57ff23347c24c3ca Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 14 Aug 2023 20:11:32 -0400 Subject: [PATCH] Bump rule count to 600+ in the docs (#6579) My informal count yielded 679 rules as of yesterday. --- README.md | 2 +- docs/tutorial.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b7439a603e..7d6250fb6b 100644 --- a/README.md +++ b/README.md @@ -233,7 +233,7 @@ linting command. -**Ruff supports over 500 lint rules**, many of which are inspired by popular tools like Flake8, +**Ruff supports over 600 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. diff --git a/docs/tutorial.md b/docs/tutorial.md index 15abe9b339..272a89f9d4 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -105,7 +105,7 @@ src = ["src"] ### Rule Selection -Ruff supports [over 500 lint rules](rules.md) split across over 40 built-in plugins, but +Ruff supports [over 600 lint rules](rules.md) split across over 40 built-in plugins, but determining the right set of rules will depend on your project's needs: some rules may be too strict, some are framework-specific, and so on.