Disable Checkstyle line length checks

While we would like to enforce this, we have too many violations to do
this in the near-term.
This commit is contained in:
Andrew Gaul 2012-11-10 13:05:45 -08:00
parent 96ab420bca
commit a601f63a9a
1 changed files with 4 additions and 0 deletions

View File

@ -7,10 +7,14 @@
<module name="TreeWalker">
<module name="EmptyStatement"/>
<module name="IllegalThrows"/>
<!--
jclouds prefers 120 character line lengths but has many files with
longer lines
<module name="LineLength">
<property name="ignorePattern" value="^import\s.*;$"/>
<property name="max" value="120"/>
</module>
-->
<module name="ModifierOrder"/>
<module name="MultipleVariableDeclarations"/>
<module name="SimplifyBooleanExpression"/>