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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 | 117 |
118 | 118 |
119 [TYPECHECK] | 119 [TYPECHECK] |
120 | 120 |
121 # Tells whether missing members accessed in mixin class should be ignored. A | 121 # Tells whether missing members accessed in mixin class should be ignored. A |
122 # mixin class is detected if its name ends with "mixin" (case insensitive). | 122 # mixin class is detected if its name ends with "mixin" (case insensitive). |
123 ignore-mixin-members=yes | 123 ignore-mixin-members=yes |
124 | 124 |
125 # List of classes names for which member attributes should not be checked | 125 # List of classes names for which member attributes should not be checked |
126 # (useful for classes with attributes dynamically set). | 126 # (useful for classes with attributes dynamically set). |
127 ignored-classes=SQLObject,AnsiCodes | 127 ignored-classes=SQLObject |
128 | 128 |
129 # When zope mode is activated, add a predefined set of Zope acquired attributes | 129 # When zope mode is activated, add a predefined set of Zope acquired attributes |
130 # to generated-members. | 130 # to generated-members. |
131 zope=no | 131 zope=no |
132 | 132 |
133 # List of members which are set dynamically and missed by pylint inference | 133 # List of members which are set dynamically and missed by pylint inference |
134 # system, and so shouldn't trigger E0201 when accessed. | 134 # system, and so shouldn't trigger E0201 when accessed. |
135 generated-members=REQUEST,acl_users,aq_parent | 135 generated-members=REQUEST,acl_users,aq_parent |
136 | 136 |
137 | 137 |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 # given file (report R0402 must not be disabled) | 260 # given file (report R0402 must not be disabled) |
261 import-graph= | 261 import-graph= |
262 | 262 |
263 # Create a graph of external dependencies in the given file (report R0402 must | 263 # Create a graph of external dependencies in the given file (report R0402 must |
264 # not be disabled) | 264 # not be disabled) |
265 ext-import-graph= | 265 ext-import-graph= |
266 | 266 |
267 # Create a graph of internal dependencies in the given file (report R0402 must | 267 # Create a graph of internal dependencies in the given file (report R0402 must |
268 # not be disabled) | 268 # not be disabled) |
269 int-import-graph= | 269 int-import-graph= |
OLD | NEW |