commons-math/checkstyle.properties
Tim O'Brien 60bf133582 project.properties changes. 1. The build will not fail on a failed
unit test, 2. The date/time and version are included in the xdoc
transformation, 3. JUnit is now forker, and 4. We use checkstyle.properties
to customize the behavior of Checkstyle.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@140849 13f79535-47bb-0310-9956-ffa450edef68
2003-05-21 15:10:51 +00:00

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