From 3fe24f9cbdace41389f507a05f8a0935abef3e6d Mon Sep 17 00:00:00 2001 From: Guillaume Raille Date: Tue, 31 Dec 2024 10:23:48 +0100 Subject: [PATCH] chore: enforce docstring convention --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d3abc31..9058cb6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,6 +82,9 @@ ignore = [ [tool.ruff.lint.per-file-ignores] "tests/*" = ["S101", "INP001"] +[tool.ruff.lint.pydocstyle] +convention = "google" + [tool.ruff] line-length = 100