rfc: lint docstrings

This commit is contained in:
Bagatur
2024-06-19 10:59:55 -07:00
parent 0a4ee864e9
commit db444da05d

View File

@@ -76,8 +76,15 @@ select = [
"F", # pyflakes
"I", # isort
"T201", # print
"D", # docstrings
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.per-file-ignores]
"tests/**" = ["D"] # ignore docstring checks for tests
[tool.mypy]
disallow_untyped_defs = "True"