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 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 | 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 |
M-A Ruel
2014/11/18 13:36:06
You had something here before.
vapier
2014/11/18 18:38:35
fixed ... gcl+svn is confusing
| |
65 | 65 |
66 | 66 |
67 [REPORTS] | 67 [REPORTS] |
68 | 68 |
69 # Set the output format. Available formats are text, parseable, colorized, msvs | 69 # Set the output format. Available formats are text, parseable, colorized, msvs |
70 # (visual studio) and html | 70 # (visual studio) and html |
71 output-format=text | 71 output-format=text |
72 | 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 | 73 # 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 | 74 # command line instead of printing them on stdout. Reports (if any) will be |
78 # written in a file name "pylint_global.[txt|html]". | 75 # written in a file name "pylint_global.[txt|html]". |
79 files-output=no | 76 files-output=no |
80 | 77 |
81 # Tells whether to display a full report or only the messages | 78 # Tells whether to display a full report or only the messages |
82 # CHANGED: | 79 # CHANGED: |
83 reports=no | 80 reports=no |
84 | 81 |
85 # Python expression which should return a note less than 10 (10 is the highest | 82 # 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 | 267 # Create a graph of internal dependencies in the given file (report RP0402 must |
271 # not be disabled) | 268 # not be disabled) |
272 int-import-graph= | 269 int-import-graph= |
273 | 270 |
274 | 271 |
275 [EXCEPTIONS] | 272 [EXCEPTIONS] |
276 | 273 |
277 # Exceptions that will emit a warning when being caught. Defaults to | 274 # Exceptions that will emit a warning when being caught. Defaults to |
278 # "Exception" | 275 # "Exception" |
279 overgeneral-exceptions=Exception | 276 overgeneral-exceptions=Exception |
OLD | NEW |