Skip to content

Commit

Permalink
pylint: disable bad-continuation - it's not compatible with flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
rutsky committed Jan 16, 2017
1 parent e11134b commit d361d83
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion common/pylintrc
Expand Up @@ -55,6 +55,15 @@ load-plugins=
# unpacking-non-sequence
# maybe-no-member

# "bad-continuation" disabled due to conflict with flake8 (and PEP8)
# See <https://github.com/PyCQA/pylint/issues/747>
# flake8 wants:
# func("..."
# )
# pylint wants:
# func("..."
# )

disable=
blacklisted-name,
invalid-name,
Expand Down Expand Up @@ -128,7 +137,8 @@ disable=
superfluous-parens,
no-self-argument,
no-value-for-parameter,
interface-not-implemented
interface-not-implemented,
bad-continuation

[REPORTS]

Expand Down

0 comments on commit d361d83

Please sign in to comment.