diff --git a/.pydocstylerc b/.pydocstylerc index 7429beb68..5b01d11c7 100644 --- a/.pydocstylerc +++ b/.pydocstylerc @@ -1,9 +1,9 @@ [pydocstyle] # Disabled: -# D101-105: Check for docstrings is handled by pylint. +# D100-105: Check for docstrings is handled by pylint. # D107: Missing docstring in __init__, not always needed IMHO # D202: No blank lines allowed after function docstring, false positives with decorators # D402: First line should not be function's "signature", false positives # D413: Multi-line docstring summary should start at the second line # pep257: D203,D212,D213,D214,D215,D404,D405,D406,D407,D408,D409,D410,D411 -ignore = D101,D102,D103,D105,D105,D107,D202,D203,D212,D213,D214,D215,D401,D402,D404,D405,D406,D407,D408,D409,D410,D411,D413 +ignore = D100,D101,D102,D103,D105,D105,D107,D202,D203,D212,D213,D214,D215,D401,D402,D404,D405,D406,D407,D408,D409,D410,D411,D413 diff --git a/vimiv/qt/core.py b/vimiv/qt/core.py index 4df88dd00..58a2b040c 100644 --- a/vimiv/qt/core.py +++ b/vimiv/qt/core.py @@ -4,6 +4,8 @@ # Copyright 2017-2023 Christian Karl (karlch) # License: GNU GPL v3, see the "LICENSE" and "AUTHORS" files for details. +# pylint: disable=missing-module-docstring,wildcard-import,unused-wildcard-import + from vimiv import qt diff --git a/vimiv/qt/gui.py b/vimiv/qt/gui.py index f5fb31699..a2e79698c 100644 --- a/vimiv/qt/gui.py +++ b/vimiv/qt/gui.py @@ -4,6 +4,8 @@ # Copyright 2017-2023 Christian Karl (karlch) # License: GNU GPL v3, see the "LICENSE" and "AUTHORS" files for details. +# pylint: disable=missing-module-docstring,wildcard-import,unused-wildcard-import + from vimiv import qt diff --git a/vimiv/qt/widgets.py b/vimiv/qt/widgets.py index 1d4179d15..85a6da337 100644 --- a/vimiv/qt/widgets.py +++ b/vimiv/qt/widgets.py @@ -4,6 +4,8 @@ # Copyright 2017-2023 Christian Karl (karlch) # License: GNU GPL v3, see the "LICENSE" and "AUTHORS" files for details. +# pylint: disable=missing-module-docstring,wildcard-import,unused-wildcard-import + from vimiv import qt