Skip to content

Commit

Permalink
Ignore W1202 (logging-format-interpolation)
Browse files Browse the repository at this point in the history
"Use % formatting in logging functions but pass the % parameters as arguments"
  • Loading branch information
s0undt3ch committed Mar 31, 2015
1 parent a1586ef commit ca615cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ disable=W0142,
C0330,
I0011,
I0012,
W1202,
E8402,
E8731
# E8121,
Expand All @@ -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
Expand Down
2 changes: 2 additions & 0 deletions .testing.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ disable=R,
W0622,
W0631,
W0704,
W1202,
F0220,
F0401,
E8501,
Expand Down Expand Up @@ -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 "# "
Expand Down

0 comments on commit ca615cd

Please sign in to comment.