| OLD | NEW |
| 1 [MASTER] | 1 [MASTER] |
| 2 | 2 |
| 3 # Specify a configuration file. | 3 # Specify a configuration file. |
| 4 #rcfile= | 4 #rcfile= |
| 5 | 5 |
| 6 # Python code to execute, usually for sys.path manipulation such as | 6 # Python code to execute, usually for sys.path manipulation such as |
| 7 # pygtk.require(). | 7 # pygtk.require(). |
| 8 #init-hook= | 8 #init-hook= |
| 9 | 9 |
| 10 # Profiled execution. | 10 # Profiled execution. |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 # R0922: Abstract class is only referenced 1 times | 54 # R0922: Abstract class is only referenced 1 times |
| 55 # W0122: Use of the exec statement | 55 # W0122: Use of the exec statement |
| 56 # W0141: Used builtin function '' | 56 # W0141: Used builtin function '' |
| 57 # W0142: Used * or ** magic | 57 # W0142: Used * or ** magic |
| 58 # W0402: Uses of a deprecated module 'string' | 58 # W0402: Uses of a deprecated module 'string' |
| 59 # W0404: 41: Reimport 'XX' (imported line NN) | 59 # W0404: 41: Reimport 'XX' (imported line NN) |
| 60 # W0511: TODO | 60 # W0511: TODO |
| 61 # W0603: Using the global statement | 61 # W0603: Using the global statement |
| 62 # W0703: Catch "Exception" | 62 # W0703: Catch "Exception" |
| 63 # W1201: Specify string format arguments as logging function parameters | 63 # W1201: Specify string format arguments as logging function parameters |
| 64 # | 64 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,W1
201 |
| 65 # These should get enabled, but the codebase has too many violations currently. | |
| 66 # bad-continuation | |
| 67 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,W1
201,bad-continuation | |
| 68 | 65 |
| 69 | 66 |
| 70 [REPORTS] | 67 [REPORTS] |
| 71 | 68 |
| 72 # Set the output format. Available formats are text, parseable, colorized, msvs | 69 # Set the output format. Available formats are text, parseable, colorized, msvs |
| 73 # (visual studio) and html | 70 # (visual studio) and html |
| 74 output-format=text | 71 output-format=text |
| 75 | 72 |
| 73 # Include message's id in output |
| 74 include-ids=yes |
| 75 |
| 76 # Put messages in a separate file for each module / package specified on the | 76 # Put messages in a separate file for each module / package specified on the |
| 77 # command line instead of printing them on stdout. Reports (if any) will be | 77 # command line instead of printing them on stdout. Reports (if any) will be |
| 78 # written in a file name "pylint_global.[txt|html]". | 78 # written in a file name "pylint_global.[txt|html]". |
| 79 files-output=no | 79 files-output=no |
| 80 | 80 |
| 81 # Tells whether to display a full report or only the messages | 81 # Tells whether to display a full report or only the messages |
| 82 # CHANGED: | 82 # CHANGED: |
| 83 reports=no | 83 reports=no |
| 84 | 84 |
| 85 # Python expression which should return a note less than 10 (10 is the highest | 85 # Python expression which should return a note less than 10 (10 is the highest |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 # Create a graph of internal dependencies in the given file (report RP0402 must | 270 # Create a graph of internal dependencies in the given file (report RP0402 must |
| 271 # not be disabled) | 271 # not be disabled) |
| 272 int-import-graph= | 272 int-import-graph= |
| 273 | 273 |
| 274 | 274 |
| 275 [EXCEPTIONS] | 275 [EXCEPTIONS] |
| 276 | 276 |
| 277 # Exceptions that will emit a warning when being caught. Defaults to | 277 # Exceptions that will emit a warning when being caught. Defaults to |
| 278 # "Exception" | 278 # "Exception" |
| 279 overgeneral-exceptions=Exception | 279 overgeneral-exceptions=Exception |
| OLD | NEW |