From c5cebb106ec547ba7ff9ee779f8d080c97be2f5c Mon Sep 17 00:00:00 2001 From: Thomas MK Date: Mon, 23 Jan 2023 18:29:44 +0100 Subject: [PATCH] Fix outdated description of ruff's support of isort settings (#2106) Ruff supports more than `known-first-party`, `known-third-party`, `extra-standard-library`, and `src` nowadays. Not sure if this is the best wording. Suggestions welcome! --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 54015854c5..f25a769e9c 100644 --- a/README.md +++ b/README.md @@ -1643,8 +1643,9 @@ Ruff's import sorting is intended to be nearly equivalent to `isort` when used ` Like `isort`, Ruff's import sorting is compatible with Black. -Ruff is less configurable than `isort`, but supports the `known-first-party`, `known-third-party`, -`extra-standard-library`, and `src` settings, like so: +Ruff does not yet support all of `isort`'s configuration options, though it does support many of +them. You can find the supported settings in the [API reference](#isort). For example, you can set +`known-first-party` like so: ```toml [tool.ruff]