Skip to content

Commit

Permalink
Merge pull request #155 from wiegandm/pylint_disable_c0330
Browse files Browse the repository at this point in the history
Sync .pylintrc with template, disabling bad-continuation check
  • Loading branch information
bjoernricks committed Feb 27, 2019
2 parents 92cd9d3 + 3fcc1b6 commit 2d460f6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .pylintrc
Expand Up @@ -40,9 +40,15 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
#
# bad-continuation is disabled because of a bug in pylint.
# See https://github.com/ambv/black/issues/48 and https://github.com/PyCQA/pylint/issues/289

disable=len-as-condition,
attribute-defined-outside-init,
missing-docstring
missing-docstring,
bad-continuation

#disable=print-statement,
# parameter-unpacking,
# unpacking-in-except,
Expand Down

0 comments on commit 2d460f6

Please sign in to comment.