From 49d22d8fe288fc6609dfd80f3fcfa84e4fee289f Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Tue, 14 Feb 2023 15:42:20 -0500 Subject: [PATCH] Ignore non-imperative-mood in Google docstring convention (#2900) --- crates/ruff/src/rules/pydocstyle/settings.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/ruff/src/rules/pydocstyle/settings.rs b/crates/ruff/src/rules/pydocstyle/settings.rs index 84cb0c86ee..06ea894fc5 100644 --- a/crates/ruff/src/rules/pydocstyle/settings.rs +++ b/crates/ruff/src/rules/pydocstyle/settings.rs @@ -26,6 +26,7 @@ impl Convention { Rule::MultiLineSummarySecondLine, Rule::SectionUnderlineNotOverIndented, Rule::EndsInPeriod, + Rule::NonImperativeMood, Rule::DocstringStartsWithThis, Rule::NewLineAfterSectionName, Rule::DashedUnderlineAfterSection,