HADOOP-13603. Ignore package line length checkstyle rule. Contributed by Shane Kumpf.

(cherry picked from commit 5b577f43a2)
This commit is contained in:
Akira Ajisaka 2016-11-01 20:58:13 +09:00
parent a3897f77ae
commit f0d4d7a178
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@
<!-- Checks for Size Violations. -->
<!-- See http://checkstyle.sf.net/config_sizes.html -->
<module name="LineLength">
<property name="ignorePattern" value="^import"/>
<property name="ignorePattern" value="^(package|import) .*"/>
</module>
<module name="MethodLength"/>
<module name="ParameterNumber"/>