From e9488d7cf6fe7708fefe306a642f045a75eab498 Mon Sep 17 00:00:00 2001 From: Tim O'Brien Date: Thu, 29 May 2003 23:25:00 +0000 Subject: [PATCH] Checkstyle should check that each source file include a license git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@140868 13f79535-47bb-0310-9956-ffa450edef68 --- checkstyle.properties | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/checkstyle.properties b/checkstyle.properties index 20e58dd44..d2bfc59bc 100644 --- a/checkstyle.properties +++ b/checkstyle.properties @@ -1,5 +1,10 @@ # commons math customization of default Checkstyle behavior +# Verify that EVERY source file has the appropriate license +checkstyle.header.file=LICENSE.txt +# 2-5 = CVS Header in Commons license, 10 = copyright date, 32 = product name +#checkstyle.header.ignoreline=2,3,4,5,10,32 + # 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 @@ -7,7 +12,7 @@ # was selected as a fallback. checkstyle.wrap.operator = ignore -# Ignore padding around parethese, this allows for both +# Ignore padding around parenthese, this allows for both # foo(a,b), and foo( a, b ). checkstyle.paren.pad = ignore