From dad1511eaab98ed79af1c003d48f109926db6161 Mon Sep 17 00:00:00 2001 From: Arthit Suriyawongkul Date: Wed, 13 Dec 2023 20:22:06 +0000 Subject: [PATCH] docstring-code-format = true --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) 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