aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-10-11 23:59:28 -0400
committerMike Frysinger <vapier@gentoo.org>2015-10-28 12:49:56 -0400
commitb3cfe6e0c7754a9e17b681581b2a317b7861b486 (patch)
tree9210b1bf8b4b9d8431c28bae780b553d6ccd9508 /.pylintrc
parentlint: convert type/types to isinstance (diff)
downloadcatalyst-b3cfe6e0c7754a9e17b681581b2a317b7861b486.tar.gz
catalyst-b3cfe6e0c7754a9e17b681581b2a317b7861b486.tar.bz2
catalyst-b3cfe6e0c7754a9e17b681581b2a317b7861b486.zip
lint: fix redefined-outer-name warnings
The doc module just needs a main func to hold all the variables instead of coding it all in global scope.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc3
1 files changed, 1 insertions, 2 deletions
diff --git a/.pylintrc b/.pylintrc
index 2a03f239..e657daf1 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -32,10 +32,9 @@ load-plugins=
# 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
-# redefined-outer-name -- clean up code to not do this
# super-init-not-called -- fix the classes __init__ structure
# no-init -- update classes w/missing __init__ functions
-disable=missing-docstring, too-many-lines, too-many-branches, too-many-statements, too-few-public-methods, too-many-instance-attributes, too-many-public-methods, too-many-locals, too-many-arguments, locally-enabled, locally-disabled, fixme, broad-except, bad-whitespace, bad-continuation, invalid-name, line-too-long, redefined-outer-name, super-init-not-called, no-init
+disable=missing-docstring, too-many-lines, too-many-branches, too-many-statements, too-few-public-methods, too-many-instance-attributes, too-many-public-methods, too-many-locals, too-many-arguments, locally-enabled, locally-disabled, fixme, broad-except, bad-whitespace, bad-continuation, invalid-name, line-too-long, super-init-not-called, no-init
[REPORTS]