From d7e01dcd38319074999f55562e27cb2e71afb89b Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Tue, 21 May 2024 20:28:44 +0100 Subject: [PATCH] chore: upgrade ruff settings (#744) --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a7e3760b..52038b52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,8 @@ pytest-mock = "^3.3" [tool.ruff] target-version = "py38" line-length = 88 + +[tool.ruff.lint] ignore = [ "D203", # 1 blank line required before class docstring "D212", # Multi-line docstring summary should start at the first line @@ -37,7 +39,7 @@ select = [ "RUF", # ruff specific ] -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] "tests/**/*" = [ "D100", "D101",