mirror of https://github.com/apache/jclouds.git
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:
parent
96ab420bca
commit
a601f63a9a
|
@ -7,10 +7,14 @@
|
||||||
<module name="TreeWalker">
|
<module name="TreeWalker">
|
||||||
<module name="EmptyStatement"/>
|
<module name="EmptyStatement"/>
|
||||||
<module name="IllegalThrows"/>
|
<module name="IllegalThrows"/>
|
||||||
|
<!--
|
||||||
|
jclouds prefers 120 character line lengths but has many files with
|
||||||
|
longer lines
|
||||||
<module name="LineLength">
|
<module name="LineLength">
|
||||||
<property name="ignorePattern" value="^import\s.*;$"/>
|
<property name="ignorePattern" value="^import\s.*;$"/>
|
||||||
<property name="max" value="120"/>
|
<property name="max" value="120"/>
|
||||||
</module>
|
</module>
|
||||||
|
-->
|
||||||
<module name="ModifierOrder"/>
|
<module name="ModifierOrder"/>
|
||||||
<module name="MultipleVariableDeclarations"/>
|
<module name="MultipleVariableDeclarations"/>
|
||||||
<module name="SimplifyBooleanExpression"/>
|
<module name="SimplifyBooleanExpression"/>
|
||||||
|
|
Loading…
Reference in New Issue