add warnings to pylint

This commit is contained in:
Carlos Meza 2018-02-25 06:54:54 +00:00
parent d4314c64bb
commit 7bdd9bdaa3

View file

@ -27,12 +27,13 @@ load-plugins=
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time.
enable=W0401,W0403,W0611
enable=W0401,W0403,W0404,W0406,W0611,W0614
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time.
disable=C0111,I0011,I0020,R0201,R0801,R0914,R1704,R1705,R1710,W,E0632,E1101,E1121,E1601,E1608,C0103,C0301,C0325,C0326,C0330,C0411,R0401
disable=W0511,C0111,I0011,I0020,R0201,R0801,E0632,E1101,E1121,E1601,E1608,W0102,W0106,W0108,W0110,W0201,W0212,W0311,W0402,W0612,W0613,W0621,W0640,W0703,W1201,W1202,W1401,C0103,C0301,C0325,C0326,C0330,C0411,R0401,R0914,R1704,R1705,R1710
# W0511 fixme
# C0111 mssing-docstring
# I0011 locally-disabled
# I0020 suppressed-message
@ -44,6 +45,22 @@ disable=C0111,I0011,I0020,R0201,R0801,R0914,R1704,R1705,R1710,W,E0632,E1101,E112
# E1121(too-many-function-args)
# E1601(print-statement)
# E1608(old-octal-literal)
# W0102(dangerous-default-value)
# W0106(expression-not-assigned)
# W0108(unnecessary-lambda)
# W0110(deprecated-lambda)
# W0201(attribute-defined-outside-init)
# W0212(protected-access)
# W0311(bad-indentation)
# W0402(deprecated-module)
# W0612(unused-variable)
# W0613(unused-argument)
# W0621(redefined-outer-name)
# W0640(cell-var-from-loop)
# W0703(broad-except)
# W1201(logging-not-lazy)
# W1202(logging-format-interpolation)
# W1401(anomalous-backslash-in-string)
# C0103(invalid-name)
# C0411(wrong-import-order)
# C0301(line-too-long)