summaryrefslogtreecommitdiffstats
path: root/tools/android/checkstyle
diff options
context:
space:
mode:
authorAurimas Liutikas <aurimas@google.com>2014-11-18 18:03:53 -0800
committerAurimas Liutikas <aurimas@google.com>2014-11-19 02:05:07 +0000
commit16cea11eb4b9a63aaf794a826427bcd333fa29ca (patch)
treebcb1421828bb81412d83e46c362e76955a17d140 /tools/android/checkstyle
parent78e04a48e72df1df842801667918c83679e369be (diff)
downloadchromium_src-16cea11eb4b9a63aaf794a826427bcd333fa29ca.zip
chromium_src-16cea11eb4b9a63aaf794a826427bcd333fa29ca.tar.gz
chromium_src-16cea11eb4b9a63aaf794a826427bcd333fa29ca.tar.bz2
Add exceptions for lineLength for URLs.
BUG=None R=newt@chromium.org Review URL: https://codereview.chromium.org/740643002 Cr-Commit-Position: refs/heads/master@{#304742}
Diffstat (limited to 'tools/android/checkstyle')
-rw-r--r--tools/android/checkstyle/chromium-style-5.0.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/android/checkstyle/chromium-style-5.0.xml b/tools/android/checkstyle/chromium-style-5.0.xml
index 46b19e9..fa34417 100644
--- a/tools/android/checkstyle/chromium-style-5.0.xml
+++ b/tools/android/checkstyle/chromium-style-5.0.xml
@@ -91,7 +91,7 @@
</module>
<module name="LineLength">
<property name="severity" value="error"/>
- <property name="ignorePattern" value="^import.*$" />
+ <property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://"/>
<property name="max" value="100"/>
</module>
<module name="LeftCurly">