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

Side by Side Diff: android_webview/tools/pylintrc

Issue 2551353004: Add helper script for running CTS APKs stored in the GS buckets. (Closed)
Patch Set: Add helper script for running CTS APKs stored in the GS buckets. Created 4 years 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
OLDNEW
1 [BASIC] 1 [BASIC]
2 2
3 function-rgx=[A-Z_][a-zA-Z0-9_]{2,30}$ 3 function-rgx=[A-Z_][a-zA-Z0-9_]{2,30}$
4 method-rgx=[a-z_][a-zA-Z0-9_]{2,30}$ 4 method-rgx=[a-z_][a-zA-Z0-9_]{2,30}$
5 5
6 good-names=e,f,i,j,k,main,_ 6 good-names=e,f,i,j,k,main,_
7 7
8 [FORMAT] 8 [FORMAT]
9 9
10 indent-string=' ' 10 indent-string=' '
11 max-line-length=80 11 max-line-length=80
12 12
13 [MESSAGES CONTROL] 13 [MESSAGES CONTROL]
14 14
15 disable= 15 disable=
16 fixme, 16 fixme,
17 invalid-name, 17 invalid-name,
18 locally-disabled,
18 missing-docstring, 19 missing-docstring,
19 too-few-public-methods, 20 too-few-public-methods,
20 too-many-arguments, 21 too-many-arguments,
21 too-many-branches, 22 too-many-branches,
22 too-many-instance-attributes, 23 too-many-instance-attributes,
23 too-many-lines, 24 too-many-lines,
24 too-many-locals, 25 too-many-locals,
25 too-many-public-methods, 26 too-many-public-methods,
26 too-many-statements, 27 too-many-statements,
27 28
28 [REPORTS] 29 [REPORTS]
29 30
30 reports=no 31 reports=no
31 32
32 [VARIABLES] 33 [VARIABLES]
33 34
34 dummy-variables-rgx=^_.*$|dummy 35 dummy-variables-rgx=^_.*$|dummy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698