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

Side by Side Diff: pylintrc

Issue 2363773008: Add better logging when failing to load a test. (Closed)
Patch Set: patch for review Created 4 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
« no previous file with comments | « no previous file | typ/json_results.py » ('j') | typ/tests/main_test.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 Google Inc. All rights reserved. 1 # Copyright 2014 Google Inc. All rights reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 ignore-comments=yes 135 ignore-comments=yes
136 136
137 # Ignore docstrings when computing similarities. 137 # Ignore docstrings when computing similarities.
138 ignore-docstrings=yes 138 ignore-docstrings=yes
139 139
140 140
141 [FORMAT] 141 [FORMAT]
142 142
143 # Maximum number of characters on a single line. 143 # Maximum number of characters on a single line.
144 # max-line-length=200 144 # max-line-length=200
145 max-line-length=80
145 146
146 # Maximum number of lines in a module 147 # Maximum number of lines in a module
147 # max-module-lines=1000 148 # max-module-lines=1000
148 149
149 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1 150 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
150 # tab). 151 # tab).
151 # CHANGED: 152 # CHANGED:
152 indent-string=' ' 153 indent-string=' '
153 154
154 155
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 # Create a graph of internal dependencies in the given file (report RP0402 must 263 # Create a graph of internal dependencies in the given file (report RP0402 must
263 # not be disabled) 264 # not be disabled)
264 int-import-graph= 265 int-import-graph=
265 266
266 267
267 [EXCEPTIONS] 268 [EXCEPTIONS]
268 269
269 # Exceptions that will emit a warning when being caught. Defaults to 270 # Exceptions that will emit a warning when being caught. Defaults to
270 # "Exception" 271 # "Exception"
271 overgeneral-exceptions=Exception 272 overgeneral-exceptions=Exception
OLDNEW
« no previous file with comments | « no previous file | typ/json_results.py » ('j') | typ/tests/main_test.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698