Skip to content

Commit

Permalink
Merge pull request #2 from kkotenko/pylint-fixes-for-rf7
Browse files Browse the repository at this point in the history
 Pylint fixes for rf7
  • Loading branch information
lugi0 authored Mar 11, 2024
2 parents f7def46 + bd1b023 commit be37665
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions config/pylint
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,13 @@ confidence=
# no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W".
disable=fixme,
bad-continuation,
import-error,
invalid-name,
missing-function-docstring,
missing-module-docstring,
no-else-break,
no-else-raise,
no-else-return,
no-self-use,
too-few-public-methods,
too-many-arguments,
too-many-instance-attributes,
Expand Down Expand Up @@ -170,13 +168,6 @@ max-line-length=88
# Maximum number of lines in a module.
max-module-lines=2000

# List of optional constructs for which whitespace checking is disabled. `dict-
# separator` is used to allow tabulation in dicts, etc.: {1 : 1,\n222: 2}.
# `trailing-comma` allows a space between comma and closing bracket: (a, ).
# `empty-line` allows space-only lines.
no-space-check=trailing-comma,
dict-separator

# Allow the body of a class to be on the same line as the declaration if body
# contains single statement.
single-line-class-stmt=no
Expand Down Expand Up @@ -521,6 +512,6 @@ preferred-modules=
[EXCEPTIONS]

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
# "builtins.BaseException, builtins.Exception".
overgeneral-exceptions=builtins.BaseException,
builtins.Exception

0 comments on commit be37665

Please sign in to comment.