Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(298)

Side by Side Diff: pylintrc

Issue 10169032: Add google.appengine.api.memcache to pylint ignored list (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 109
110 110
111 [TYPECHECK] 111 [TYPECHECK]
112 112
113 # Tells whether missing members accessed in mixin class should be ignored. A 113 # Tells whether missing members accessed in mixin class should be ignored. A
114 # mixin class is detected if its name ends with "mixin" (case insensitive). 114 # mixin class is detected if its name ends with "mixin" (case insensitive).
115 ignore-mixin-members=yes 115 ignore-mixin-members=yes
116 116
117 # List of classes names for which member attributes should not be checked 117 # List of classes names for which member attributes should not be checked
118 # (useful for classes with attributes dynamically set). 118 # (useful for classes with attributes dynamically set).
119 ignored-classes=SQLObject,twisted.internet.reactor,hashlib 119 ignored-classes=SQLObject,twisted.internet.reactor,hashlib,google.appengine.api. memcache
120 120
121 # When zope mode is activated, add a predefined set of Zope acquired attributes 121 # When zope mode is activated, add a predefined set of Zope acquired attributes
122 # to generated-members. 122 # to generated-members.
123 zope=no 123 zope=no
124 124
125 # List of members which are set dynamically and missed by pylint inference 125 # List of members which are set dynamically and missed by pylint inference
126 # system, and so shouldn't trigger E0201 when accessed. Python regular 126 # system, and so shouldn't trigger E0201 when accessed. Python regular
127 # expressions are accepted. 127 # expressions are accepted.
128 generated-members=REQUEST,acl_users,aq_parent 128 generated-members=REQUEST,acl_users,aq_parent
129 129
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698