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

Side by Side Diff: pylintrc

Issue 8371006: Reapply r106708 "Include initial use of colorama" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 2 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 | « gclient.py ('k') | third_party/colorama/LICENSE.txt » ('j') | 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 116
117 117
118 [TYPECHECK] 118 [TYPECHECK]
119 119
120 # Tells whether missing members accessed in mixin class should be ignored. A 120 # Tells whether missing members accessed in mixin class should be ignored. A
121 # mixin class is detected if its name ends with "mixin" (case insensitive). 121 # mixin class is detected if its name ends with "mixin" (case insensitive).
122 ignore-mixin-members=yes 122 ignore-mixin-members=yes
123 123
124 # List of classes names for which member attributes should not be checked 124 # List of classes names for which member attributes should not be checked
125 # (useful for classes with attributes dynamically set). 125 # (useful for classes with attributes dynamically set).
126 ignored-classes=SQLObject 126 ignored-classes=SQLObject,AnsiCodes
127 127
128 # When zope mode is activated, add a predefined set of Zope acquired attributes 128 # When zope mode is activated, add a predefined set of Zope acquired attributes
129 # to generated-members. 129 # to generated-members.
130 zope=no 130 zope=no
131 131
132 # List of members which are set dynamically and missed by pylint inference 132 # List of members which are set dynamically and missed by pylint inference
133 # system, and so shouldn't trigger E0201 when accessed. 133 # system, and so shouldn't trigger E0201 when accessed.
134 generated-members=REQUEST,acl_users,aq_parent 134 generated-members=REQUEST,acl_users,aq_parent
135 135
136 136
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 # given file (report R0402 must not be disabled) 259 # given file (report R0402 must not be disabled)
260 import-graph= 260 import-graph=
261 261
262 # Create a graph of external dependencies in the given file (report R0402 must 262 # Create a graph of external dependencies in the given file (report R0402 must
263 # not be disabled) 263 # not be disabled)
264 ext-import-graph= 264 ext-import-graph=
265 265
266 # Create a graph of internal dependencies in the given file (report R0402 must 266 # Create a graph of internal dependencies in the given file (report R0402 must
267 # not be disabled) 267 # not be disabled)
268 int-import-graph= 268 int-import-graph=
OLDNEW
« no previous file with comments | « gclient.py ('k') | third_party/colorama/LICENSE.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698