diff --git a/pylintrc.toml b/pylintrc.toml index a542805..c862ef9 100644 --- a/pylintrc.toml +++ b/pylintrc.toml @@ -4,16 +4,16 @@ max-line-length = 79 [tool.pylint."messages control"] disable = [ - # Covered in flake8 according to https://pylint.rtfd.io/en/latest/faq.html#which-messages-should-i-disable-to-avoid-duplicates-if-i-use-other-popular-linters - "unnecessary-semicolon", "bad-indentation", "bare-except", # pycodestyle - "unnecessary-negation", "singleton-comparison", "line-too-long", # pycodestyle - "trailing-whitespace", "missing-final-newline", "trailing-newlines", # pycodestyle - "multiple-statements", "wrong-import-position", # pycodestyle - "undefined-variable", "unused-import", "unused-variable", # pyflakes - "too-many-branches", # mccabe + # Covered in flake8 according to https://pylint.rtfd.io/en/latest/faq.html#which-messages-should-i-disable-to-avoid-duplicates-if-i-use-other-popular-linters + "unnecessary-semicolon", "bad-indentation", "bare-except", # pycodestyle + "unnecessary-negation", "singleton-comparison", "line-too-long", # pycodestyle + "trailing-whitespace", "missing-final-newline", "trailing-newlines", # pycodestyle + "multiple-statements", "wrong-import-position", # pycodestyle + "undefined-variable", "unused-import", "unused-variable", # pyflakes + "too-many-branches", # mccabe - # other stuff - # Unfold "missing-docstring" (https://pylint.rtfd.io/en/latest/user_guide/messages/convention/missing-docstring.html) - "missing-module-docstring", "missing-class-docstring", "missing-function-docstring", - #"invalid-name", "redefined-outer-name", "logging-format-interpolation", + # other stuff + # Unfold "missing-docstring" (https://pylint.rtfd.io/en/latest/user_guide/messages/convention/missing-docstring.html) + "missing-module-docstring", "missing-class-docstring", "missing-function-docstring", + #"invalid-name", "redefined-outer-name", "logging-format-interpolation", ]