Ignore `W1202` (logging-format-interpolation)

"Use % formatting in logging functions but pass the % parameters as arguments"
This commit is contained in:
Pedro Algarvio 2015-03-31 19:21:30 +01:00
Родитель a1586ef4f6
Коммит ca615cd92d
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -52,6 +52,7 @@ disable=W0142,
C0330,
I0011,
I0012,
W1202,
E8402,
E8731
# E8121,
@ -66,6 +67,7 @@ disable=W0142,
# Disabled Checks
#
# W0142 (star-args)
# W1202 (logging-format-interpolation) Use % formatting in logging functions but pass the % parameters as arguments
# E812* All PEP8 E12*
# E8402 module level import not at top of file
# E8501 PEP8 line too long

Просмотреть файл

@ -67,6 +67,7 @@ disable=R,
W0622,
W0631,
W0704,
W1202,
F0220,
F0401,
E8501,
@ -115,6 +116,7 @@ disable=R,
# W0704 (pointless-except) [misnomer; "ignores the exception" rather than "pointless"]
# F0220 (unresolved-interface)
# F0401 (import-error)
# W1202 (logging-format-interpolation) Use % formatting in logging functions but pass the % parameters as arguments
#
# E812* All PEP8 E12*
# E8265 PEP8 E265 - block comment should start with "# "