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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 # old-style-class | 83 # old-style-class |
84 # protected-access | 84 # protected-access |
85 # superfluous-parens | 85 # superfluous-parens |
86 # super-on-old-class | 86 # super-on-old-class |
87 # too-many-function-args | 87 # too-many-function-args |
88 # trailing-whitespace | 88 # trailing-whitespace |
89 # unnecessary-semicolon | 89 # unnecessary-semicolon |
90 # unpacking-non-sequence | 90 # unpacking-non-sequence |
91 # unused-import | 91 # unused-import |
92 # useless-else-on-loop | 92 # useless-else-on-loop |
93 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,anomalous-backslash-in-string,bad-context-manager,bad-inden
tation,bad-str-strip-call,bad-whitespace,cell-var-from-loop,deprecated-lambda,ev
al-used,function-redefined,import-error,locally-enabled,missing-final-newline,no
-init,no-name-in-module,no-self-use,not-callable,old-style-class,protected-acces
s,superfluous-parens,super-on-old-class,too-many-function-args,trailing-whitespa
ce,unnecessary-semicolon,unpacking-non-sequence,unused-import,useless-else-on-lo
op | 93 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 |
94 | 94 |
95 | 95 |
96 [REPORTS] | 96 [REPORTS] |
97 | 97 |
98 # Set the output format. Available formats are text, parseable, colorized, msvs | 98 # Set the output format. Available formats are text, parseable, colorized, msvs |
99 # (visual studio) and html | 99 # (visual studio) and html |
100 output-format=text | 100 output-format=text |
101 | 101 |
| 102 # Include message's id in output |
| 103 include-ids=yes |
| 104 |
102 # Put messages in a separate file for each module / package specified on the | 105 # Put messages in a separate file for each module / package specified on the |
103 # command line instead of printing them on stdout. Reports (if any) will be | 106 # command line instead of printing them on stdout. Reports (if any) will be |
104 # written in a file name "pylint_global.[txt|html]". | 107 # written in a file name "pylint_global.[txt|html]". |
105 files-output=no | 108 files-output=no |
106 | 109 |
107 # Tells whether to display a full report or only the messages | 110 # Tells whether to display a full report or only the messages |
108 # CHANGED: | 111 # CHANGED: |
109 reports=no | 112 reports=no |
110 | 113 |
111 # Python expression which should return a note less than 10 (10 is the highest | 114 # 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... |
296 # Create a graph of internal dependencies in the given file (report RP0402 must | 299 # Create a graph of internal dependencies in the given file (report RP0402 must |
297 # not be disabled) | 300 # not be disabled) |
298 int-import-graph= | 301 int-import-graph= |
299 | 302 |
300 | 303 |
301 [EXCEPTIONS] | 304 [EXCEPTIONS] |
302 | 305 |
303 # Exceptions that will emit a warning when being caught. Defaults to | 306 # Exceptions that will emit a warning when being caught. Defaults to |
304 # "Exception" | 307 # "Exception" |
305 overgeneral-exceptions=Exception | 308 overgeneral-exceptions=Exception |
OLD | NEW |