Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
karlch committed Jul 5, 2023
1 parent 2de71a1 commit 9b37347
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .pydocstylerc
Original file line number Diff line number Diff line change
@@ -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
2 changes: 2 additions & 0 deletions vimiv/qt/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# Copyright 2017-2023 Christian Karl (karlch) <karlch at protonmail dot com>
# 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


Expand Down
2 changes: 2 additions & 0 deletions vimiv/qt/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# Copyright 2017-2023 Christian Karl (karlch) <karlch at protonmail dot com>
# 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


Expand Down
2 changes: 2 additions & 0 deletions vimiv/qt/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
# Copyright 2017-2023 Christian Karl (karlch) <karlch at protonmail dot com>
# 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


Expand Down

0 comments on commit 9b37347

Please # to comment.