commons-math/checkstyle.properties

16 lines
569 B
Properties

# commons math customization of default Checkstyle behavior
# Ignore operator wrap, this has the effect of allowing
# operators to appear at both the eol and the nl. This
# setting should be eol, but checkstyle had problems
# parsing this property when set to "eol". "ignore"
# was selected as a fallback.
checkstyle.wrap.operator = ignore
# Ignore padding around parethese, this allows for both
# foo(a,b), and foo( a, b ).
checkstyle.paren.pad = ignore
# One should not be instantiating a java.lang.Boolean
checkstyle.illegal.instantiations = java.lang.Boolean