Compare commits

...

2 Commits

Author SHA1 Message Date
Bagatur
1e3e6c4334 fmt 2024-06-19 11:06:37 -07:00
Bagatur
db444da05d rfc: lint docstrings 2024-06-19 10:59:55 -07:00

View File

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