Skip to content

Commit

Permalink
Restore previous custom pylint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
john-kurkowski committed Oct 24, 2020
1 parent 7cb8057 commit 4d3d2b5
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ spelling-store-unknown-words=no
[MISCELLANEOUS]

# List of note tags to take in consideration, separated by a comma.
notes=FIXME,
XXX,
TODO
notes=

# Regular expression of note tags to take in consideration.
#notes-rgx=
Expand Down Expand Up @@ -460,7 +458,7 @@ name-group=

# Regular expression which should only match function or class names that do
# not require a docstring.
no-docstring-rgx=^_
no-docstring-rgx=(^_|test_.*|.*_test)

# List of decorators that produce properties, such as abc.abstractproperty. Add
# to this list to register other decorators that produce valid properties.
Expand Down Expand Up @@ -555,7 +553,7 @@ valid-metaclass-classmethod-first-arg=cls
max-args=5

# Maximum number of attributes for a class (see R0902).
max-attributes=7
max-attributes=8

# Maximum number of boolean expressions in an if statement (see R0916).
max-bool-expr=5
Expand Down

0 comments on commit 4d3d2b5

Please sign in to comment.