mirror of
https://github.com/astral-sh/ruff.git
synced 2025-11-13 09:12:10 +00:00
Document link between import sorting and formatter (#9117)
This commit is contained in:
parent
c8d6958d15
commit
db38078ca3
1 changed files with 12 additions and 0 deletions
|
|
@ -392,3 +392,15 @@ flag.
|
||||||
Black promotes some of its preview styling to stable at the end of each year. Ruff will similarly
|
Black promotes some of its preview styling to stable at the end of each year. Ruff will similarly
|
||||||
implement formatting changes under the [`preview`](https://docs.astral.sh/ruff/settings/#preview)
|
implement formatting changes under the [`preview`](https://docs.astral.sh/ruff/settings/#preview)
|
||||||
flag, promoting them to stable through minor releases, in accordance with our [versioning policy](https://github.com/astral-sh/ruff/discussions/6998#discussioncomment-7016766).
|
flag, promoting them to stable through minor releases, in accordance with our [versioning policy](https://github.com/astral-sh/ruff/discussions/6998#discussioncomment-7016766).
|
||||||
|
|
||||||
|
## Sorting imports
|
||||||
|
|
||||||
|
Currently, the Ruff formatter does not sort imports. In order to both sort imports and format,
|
||||||
|
call the Ruff linter and then the formatter:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
ruff check --select I --fix .
|
||||||
|
ruff format .
|
||||||
|
```
|
||||||
|
|
||||||
|
A unified command for both linting and formatting is [planned](https://github.com/astral-sh/ruff/issues/8232).
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue