aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2020-04-15 13:03:16 -0700
committerMatt Turner <mattst88@gentoo.org>2020-04-15 13:03:16 -0700
commit2731f5f4571c91acb0e459ddcec6582bba25f5ce (patch)
treeff752a8dec417bd67cbe772955a20dbe2a36cb02 /.pylintrc
parentcatalyst: Remove unused import and reorder (diff)
downloadcatalyst-2731f5f4571c91acb0e459ddcec6582bba25f5ce.tar.gz
catalyst-2731f5f4571c91acb0e459ddcec6582bba25f5ce.tar.bz2
catalyst-2731f5f4571c91acb0e459ddcec6582bba25f5ce.zip
catalyst: Fix and enable bad-continuation checks
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc2
1 files changed, 0 insertions, 2 deletions
diff --git a/.pylintrc b/.pylintrc
index 8caafef1..5428e349 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -26,7 +26,6 @@ load-plugins=
# We should clean up things so we can enable:
# missing-docstring -- add lots of docstrings everywhere!
# bad-whitespace -- fix spacing everywhere
-# bad-continuation -- might be hard with tab indentation policy
# invalid-name -- need to manage constants better
# line-too-long -- figure out a length and stick to it
# super-init-not-called -- fix the classes __init__ structure
@@ -46,7 +45,6 @@ disable=
fixme,
broad-except,
bad-whitespace,
- bad-continuation,
invalid-name,
line-too-long,
super-init-not-called,