diff --git a/src/backend/core/resource_server/clients.py b/src/backend/core/resource_server/clients.py index 046cf97..baa6c78 100644 --- a/src/backend/core/resource_server/clients.py +++ b/src/backend/core/resource_server/clients.py @@ -19,7 +19,7 @@ class AuthorizationServerClient: - Setting appropriate headers for secure communication as recommended by RFC drafts. """ - # ruff: noqa: PLR0913 PLR017 + # ruff: noqa: PLR0913 PLR0917 # pylint: disable=too-many-positional-arguments # pylint: disable=too-many-arguments def __init__( diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index d38305c..4a4f529 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -116,9 +116,13 @@ select = [ "S", # flake8-bandit "SLF", # flake8-self "T20", # flake8-print + "D1", # pydocstyle ] ignore= ["DJ001", "PLR2004"] +[tool.ruff.lint.pydocstyle] +convention = "google" + [tool.ruff.lint.isort] section-order = ["future","standard-library","django","third-party","people","first-party","local-folder"] sections = { people=["core"], django=["django"] }