diff --git a/pyproject.toml b/pyproject.toml index 3a43406..1c4992d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -85,6 +85,14 @@ ignore = [ "D401", # imperative mood "E501", # line too long (handled by formatter) "W291", # trailing whitespace: fixed by ruff anyway + "W291", # trailing whitespace: fixed by ruff anyway + "D100", # missing docstring in public module + "D101", # missing docstring in public class + "D102", # missing docstring in public method + "D103", # missing docstring in public function + "D104", # missing docstring in public package + "D105", # missing docstring in magic method + "D107", # missing docstring in __init__ ] fixable = ["ALL"] unfixable = []