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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 | 110 |
111 | 111 |
112 [TYPECHECK] | 112 [TYPECHECK] |
113 | 113 |
114 # Tells whether missing members accessed in mixin class should be ignored. A | 114 # Tells whether missing members accessed in mixin class should be ignored. A |
115 # mixin class is detected if its name ends with "mixin" (case insensitive). | 115 # mixin class is detected if its name ends with "mixin" (case insensitive). |
116 ignore-mixin-members=yes | 116 ignore-mixin-members=yes |
117 | 117 |
118 # List of classes names for which member attributes should not be checked | 118 # List of classes names for which member attributes should not be checked |
119 # (useful for classes with attributes dynamically set). | 119 # (useful for classes with attributes dynamically set). |
120 ignored-classes=SQLObject | 120 ignored-classes=SQLObject,webapp2.RequestHandler |
121 | 121 |
122 # When zope mode is activated, add a predefined set of Zope acquired attributes | 122 # When zope mode is activated, add a predefined set of Zope acquired attributes |
123 # to generated-members. | 123 # to generated-members. |
124 zope=no | 124 zope=no |
125 | 125 |
126 # List of members which are set dynamically and missed by pylint inference | 126 # List of members which are set dynamically and missed by pylint inference |
127 # system, and so shouldn't trigger E0201 when accessed. | 127 # system, and so shouldn't trigger E0201 when accessed. |
128 generated-members=REQUEST,acl_users,aq_parent | 128 generated-members=REQUEST,acl_users,aq_parent |
129 | 129 |
130 | 130 |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 # given file (report R0402 must not be disabled) | 253 # given file (report R0402 must not be disabled) |
254 import-graph= | 254 import-graph= |
255 | 255 |
256 # Create a graph of external dependencies in the given file (report R0402 must | 256 # Create a graph of external dependencies in the given file (report R0402 must |
257 # not be disabled) | 257 # not be disabled) |
258 ext-import-graph= | 258 ext-import-graph= |
259 | 259 |
260 # Create a graph of internal dependencies in the given file (report R0402 must | 260 # Create a graph of internal dependencies in the given file (report R0402 must |
261 # not be disabled) | 261 # not be disabled) |
262 int-import-graph= | 262 int-import-graph= |
OLD | NEW |