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

Side by Side Diff: telemetry/pylintrc

Issue 2978643002: Removing bad-continuation param and fixing resulting errors. Fixed indentation errors, in telemetry… (Closed)
Patch Set: Created 3 years, 5 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 | « telemetry/build/update_docs.py ('k') | telemetry/telemetry/__init__.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 [MESSAGES CONTROL] 1 [MESSAGES CONTROL]
2 2
3 # Disable the message, report, category or checker with the given id(s). 3 # Disable the message, report, category or checker with the given id(s).
4 # TODO(telemetry-team): Shrink this list to as small as possible. 4 # TODO(telemetry-team): Shrink this list to as small as possible.
5 disable= 5 disable=
6 design, 6 design,
7 similarities, 7 similarities,
8
9 abstract-class-little-used,
10 abstract-class-not-used,
11 bad-builtin, 8 bad-builtin,
12 bad-continuation,
13 broad-except, 9 broad-except,
14 fixme, 10 fixme,
15 global-statement, 11 global-statement,
16 interface-not-implemented, 12 interface-not-implemented,
17 invalid-name, 13 invalid-name,
18 locally-disabled, 14 locally-disabled,
19 locally-enabled, 15 locally-enabled,
20 logging-not-lazy, 16 logging-not-lazy,
21 missing-docstring, 17 missing-docstring,
22 no-member, 18 no-member,
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 62
67 # Tells wether missing members accessed in mixin class should be ignored. A 63 # Tells wether missing members accessed in mixin class should be ignored. A
68 # mixin class is detected if its name ends with "mixin" (case insensitive). 64 # mixin class is detected if its name ends with "mixin" (case insensitive).
69 ignore-mixin-members=yes 65 ignore-mixin-members=yes
70 66
71 67
72 [FORMAT] 68 [FORMAT]
73 69
74 # We use two spaces for indents, instead of the usual four spaces or tab. 70 # We use two spaces for indents, instead of the usual four spaces or tab.
75 indent-string=' ' 71 indent-string=' '
OLDNEW
« no previous file with comments | « telemetry/build/update_docs.py ('k') | telemetry/telemetry/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698