We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70e2c2 commit 9b5a4d4Copy full SHA for 9b5a4d4
1 file changed
pyproject.toml
@@ -34,3 +34,18 @@ pytest-cov = "^6.0.0"
34
[build-system]
35
build-backend = "poetry.core.masonry.api"
36
requires = ["poetry-core"]
37
+
38
+[tool.ruff.lint]
39
+select = [
40
+ "D",
41
+ # imperative mood for all docstrings
42
+ "D401",
43
+]
44
45
+ignore = [
46
+ # no blank lines allowed after function docstring
47
+ "D202",
48
49
50
+[tool.ruff.lint.pydocstyle]
51
+convention = "numpy"
0 commit comments