Remove extend- from docstring configuration examples (#1571)

This commit is contained in:
Charlie Marsh 2023-01-02 17:53:41 -05:00 committed by GitHub
parent 8647bec3cb
commit e5a59f41b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -1474,8 +1474,8 @@ For example, if you're coming from `flake8-docstrings`, the following configurat
```toml
[tool.ruff]
extend-select = ["D"]
extend-ignore = [
select = ["D"]
ignore = [
"D107",
"D203",
"D212",
@ -1492,8 +1492,8 @@ Similarly, the following is equivalent to `--docstring-convention=google`:
```toml
[tool.ruff]
extend-select = ["D"]
extend-ignore = [
select = ["D"]
ignore = [
"D203",
"D204",
"D213",
@ -1512,8 +1512,8 @@ Similarly, the following is equivalent to `--docstring-convention=pep8`:
```toml
[tool.ruff]
extend-select = ["D"]
extend-ignore = [
select = ["D"]
ignore = [
"D203",
"D212",
"D213",