Skip to content

Commit

Permalink
exclude unused rules for pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
shpaker committed Aug 22, 2021
1 parent 5070113 commit 456c695
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@ src_paths = ["winregistry", "tests"]
skip = [".mypy_cache", ".pytest_cache", "venv"]

[tool.pylint.messages_control]
disable = "missing-docstring,no-self-use,logging-fstring-interpolation,too-few-public-methods,too-many-arguments,duplicate-code"
extend-ignore = "E203,W503"
disable = "missing-docstring,logging-fstring-interpolation,too-many-arguments"

[tool.pylint.format]
max-line-length = "120"
indent-string = " "
good-names = "i, x, y"
good-names = "i"
4 changes: 1 addition & 3 deletions winregistry/robot/keywords.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
"""
Class for working with Robot Testing Framework
"""
# pylint: disable=no-self-use
from typing import Any

from winregistry import RegEntry, RegKey, WinRegistry, WinregType
Expand Down

0 comments on commit 456c695

Please sign in to comment.