From 3934a0bc28eaf4427c9f640409bfd1f2892af0ea Mon Sep 17 00:00:00 2001 From: Laurent Bossavit Date: Fri, 25 Oct 2024 14:58:20 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8(linter)=20configure=20exclusions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See PR for rationale. --- src/backend/pyproject.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 4a4f529..e83d6c4 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -118,10 +118,7 @@ select = [ "T20", # flake8-print "D1", # pydocstyle ] -ignore= ["DJ001", "PLR2004"] - -[tool.ruff.lint.pydocstyle] -convention = "google" +ignore= ["DJ001", "PLR2004", "D105", "D106"] [tool.ruff.lint.isort] section-order = ["future","standard-library","django","third-party","people","first-party","local-folder"]