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

Side by Side Diff: pylintrc

Issue 10202010: Remove E1101 errors generated by colorama.AnsiCodes. (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 | third_party/colorama/ansi.py » ('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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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=
OLDNEW
« no previous file with comments | « no previous file | third_party/colorama/ansi.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698