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

Side by Side Diff: tools/perf/pylintrc

Issue 1306083005: [tools/Perf] Disable pylint's long line check for urls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « tools/perf/page_sets/key_mobile_sites_smooth.py ('k') | no next file » | 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(perf-owners): Reduce this list to as small as possible. 4 # TODO(perf-owners): Reduce this list to as small as possible.
5 disable=I0010,I0011,abstract-class-little-used,abstract-class-not-used,anomalous -backslash-in-string,bad-builtin,bad-context-manager,bad-continuation,bad-indent ation,bad-str-strip-call,bad-whitespace,broad-except,cell-var-from-loop,deprecat ed-lambda,deprecated-module,duplicate-code,eval-used,exec-used,fixme,function-re defined,global-statement,interface-not-implemented,invalid-name,locally-enabled, logging-not-lazy,missing-docstring,missing-final-newline,no-init,no-member,no-na me-in-module,no-self-use,no-self-use,not-callable,reimported,star-args,super-on- old-class,too-few-public-methods,too-many-ancestors,too-many-arguments,too-many- branches,too-many-function-args,too-many-instance-attributes,too-many-lines,too- many-locals,too-many-public-methods,too-many-return-statements,too-many-statemen ts,trailing-whitespace,useless-else-on-loop 5 disable=I0010,I0011,abstract-class-little-used,abstract-class-not-used,anomalous -backslash-in-string,bad-builtin,bad-context-manager,bad-continuation,bad-indent ation,bad-str-strip-call,bad-whitespace,broad-except,cell-var-from-loop,deprecat ed-lambda,deprecated-module,duplicate-code,eval-used,exec-used,fixme,function-re defined,global-statement,interface-not-implemented,invalid-name,locally-enabled, logging-not-lazy,missing-docstring,missing-final-newline,no-init,no-member,no-na me-in-module,no-self-use,no-self-use,not-callable,reimported,star-args,super-on- old-class,too-few-public-methods,too-many-ancestors,too-many-arguments,too-many- branches,too-many-function-args,too-many-instance-attributes,too-many-lines,too- many-locals,too-many-public-methods,too-many-return-statements,too-many-statemen ts,trailing-whitespace,useless-else-on-loop
6 6
7 7
8 [REPORTS] 8 [REPORTS]
9 9
10 # Don't write out full reports, just messages. 10 # Don't write out full reports, just messages.
11 reports=no 11 reports=no
12 12
13 13
14 [FORMAT] 14 [FORMAT]
15 15
16 # We use two spaces for indents, instead of the usual four spaces or tab. 16 # We use two spaces for indents, instead of the usual four spaces or tab.
17 indent-string=' ' 17 indent-string=' '
18
19 # We suppress long line check for lines that contain only the URL (with or
20 # without quote).
21 ignore-long-lines=^\s*'?https?://\S+'?$
OLDNEW
« no previous file with comments | « tools/perf/page_sets/key_mobile_sites_smooth.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698