Files
test/pyproject.toml
Andrew Vaillancourt 9fb2b36228 Relax docstring constraints
- Ignore `DOC501` in `pydoclint` to avoid requiring "Raises" sections
  for all functions that raise exceptions.
- Ignore `D415` in `pydocstyle` to allow first-line summaries without
  strict punctuation enforcement.

Depends-On: https://review.opendev.org/c/starlingx/test/+/942742
Change-Id: Ib01e8a0af25e1b7783179e1af26f56e87fe00aa0
Signed-off-by: Andrew Vaillancourt <andrew.vaillancourt@windriver.com>
2025-02-26 01:38:43 +00:00

15 lines
269 B
TOML

[tool.isort]
py_version = "311"
profile = "black"
[tool.black]
target-version = ['py311']
preview = true
include = '\.py'
[tool.pydoclint]
style = "google"
check-return-types = true
allow-init-docstring = true
ignore = ["DOC501"] # Ignore Raises section requirement