mirror of
https://github.com/astral-sh/ruff.git
synced 2025-12-23 09:19:39 +00:00
Fix docs typo for ruff format preview configuration (#8611)
## Summary
The ruff configuration section is called "format", rather than
"preview". Using the configuration as it was written in the docs gives
an error:
```
$ ruff format --check .
ruff failed
Cause: TOML parse error at line 143, column 1
|
143 | [tool.ruff.preview]
| ^^^^^^^^^^^^^^^^^^^
invalid type: map, expected a boolean
```
## Test Plan
Tested running `ruff format` with the following in my `pyproject.toml`:
```toml
[tool.ruff.format]
preview = true
```
and it worked properly (using preview rules for formatting).
This commit is contained in:
parent
39728a1198
commit
d7144d6d8e
1 changed files with 2 additions and 2 deletions
|
|
@ -32,14 +32,14 @@ To enable preview style formatting without enabling any preview lint rules:
|
|||
=== "pyproject.toml"
|
||||
|
||||
```toml
|
||||
[tool.ruff.preview]
|
||||
[tool.ruff.format]
|
||||
preview = true
|
||||
```
|
||||
|
||||
=== "ruff.toml"
|
||||
|
||||
```toml
|
||||
[preview]
|
||||
[format]
|
||||
preview = true
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue