mirror of
https://github.com/apache/commons-math.git
synced 2025-02-06 10:09:26 +00:00
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
16 lines
569 B
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
|