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!
This commit is contained in:
Thomas MK 2023-01-23 18:29:44 +01:00 committed by GitHub
parent 8c61e8a1ef
commit c5cebb106e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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]