Reorder pylint disables

This commit is contained in:
Florian Bruhin 2017-12-15 17:16:55 +01:00
parent 26a622c46d
commit 4c24b9ed4a

View File

@ -13,35 +13,35 @@ persistent=n
[MESSAGES CONTROL]
enable=all
disable=no-self-use,
fixme,
global-statement,
locally-disabled,
locally-enabled,
too-many-ancestors,
too-few-public-methods,
too-many-public-methods,
disable=fixme,
no-self-use,
cyclic-import,
bad-continuation,
too-many-instance-attributes,
blacklisted-name,
too-many-lines,
logging-format-interpolation,
broad-except,
bare-except,
eval-used,
exec-used,
global-statement,
ungrouped-imports,
suppressed-message,
too-many-return-statements,
duplicate-code,
wrong-import-position,
no-else-return,
logging-not-lazy,
locally-disabled,
locally-enabled,
too-many-ancestors,
too-many-public-methods,
too-many-instance-attributes,
too-many-lines,
too-many-return-statements,
too-many-boolean-expressions,
too-many-locals,
too-many-branches,
too-many-statements
too-many-statements,
too-few-public-methods
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$