From e5a59f41b0bd0248ccd52dd278e4d563d39a68e6 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 2 Jan 2023 17:53:41 -0500 Subject: [PATCH] Remove extend- from docstring configuration examples (#1571) --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 68a85687e8..ab7d98b726 100644 --- a/README.md +++ b/README.md @@ -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",