diff options
author | Matt Turner <mattst88@gentoo.org> | 2020-04-15 13:03:16 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-04-15 13:03:16 -0700 |
commit | 2731f5f4571c91acb0e459ddcec6582bba25f5ce (patch) | |
tree | ff752a8dec417bd67cbe772955a20dbe2a36cb02 /.pylintrc | |
parent | catalyst: Remove unused import and reorder (diff) | |
download | catalyst-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-- | .pylintrc | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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, |