diff --git a/pyproject.toml b/pyproject.toml index a3ca539a7..1051262e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,9 @@ quote-style = "double" indent-style = "space" skip-magic-trailing-comma = false line-ending = "auto" +docstring-code-format = true [tool.ruff.lint.mccabe] # Flag errors (`C901`) whenever the complexity level exceeds 5. Default is 10. +# We should aim to gradually reduce this to 10. max-complexity = 40