Skip to content

Commit dc73c23

Browse files
committed
chore: Reinstate full pydocstyle lint
This was dropped when the configuration was moved to ruff 0.16, but the default lint rules only include D419, not the full D lint ruleset. The lint rule was already enforced, so we can save time and [skip ci].
1 parent e98dea3 commit dc73c23

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ cache-keys = [
7777
[tool.uv-dynamic-versioning]
7878
fallback-version = "0.0.0"
7979

80+
[tool.ruff.lint]
81+
extend-select = [
82+
"D", # pydocstyle
83+
]
84+
8085
[tool.ruff.lint.per-file-ignores]
8186
"tests/**" = ["D1"] # tests do not require a docstring
8287

0 commit comments

Comments
 (0)