Index: pylintrc |
=================================================================== |
--- pylintrc (revision 292986) |
+++ pylintrc (working copy) |
@@ -61,7 +61,10 @@ |
# W0603: Using the global statement |
# W0703: Catch "Exception" |
# W1201: Specify string format arguments as logging function parameters |
-disable=C0103,C0111,C0302,I0010,I0011,R0801,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0703,W1201 |
+# |
+# These should get enabled, but the codebase has too many violations currently. |
+# bad-continuation |
+disable=C0103,C0111,C0302,I0010,I0011,R0801,R0901,R0902,R0903,R0904,R0911,R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0703,W1201,bad-continuation |
[REPORTS] |
@@ -70,9 +73,6 @@ |
# (visual studio) and html |
output-format=text |
-# Include message's id in output |
-include-ids=yes |
M-A Ruel
2014/11/18 20:25:05
Was it required? It feels like a regression. For e
vapier
2014/11/18 20:28:51
removing it was on purpose because pylint warns:
W
|
- |
# Put messages in a separate file for each module / package specified on the |
# command line instead of printing them on stdout. Reports (if any) will be |
# written in a file name "pylint_global.[txt|html]". |