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 e58e4c7 commit 6113241Copy full SHA for 6113241
1 file changed
pyproject.toml
@@ -36,6 +36,7 @@ requires = ["poetry-core"]
36
37
38
[tool.ruff.lint]
39
+preview = true # enable preview mode (https://docs.astral.sh/ruff/preview/)
40
exclude = [
41
"tests/interactive-imagej/*", # no linting for the interactive test scripts
42
]
@@ -46,6 +47,8 @@ select = [
46
47
"D401", # imperative mood for all docstrings
48
"D415", # summary line has to end in a punctuation mark
49
"D417", # require documentation for *all* function parameters
50
+ "DOC102", # check for parameters which are not in the function signature
51
+ # "DOC101", # enable as soon as ruff/pull/21076 has been merged!
52
53
54
0 commit comments