]> source.dussan.org Git - vaadin-framework.git/commitdiff
Ignore irrelevant header lines in checkstyle configuration
authorJonatan Kronqvist <jonatan@vaadin.com>
Tue, 29 Apr 2014 06:01:30 +0000 (09:01 +0300)
committerVaadin Code Review <review@vaadin.com>
Tue, 6 May 2014 06:37:29 +0000 (06:37 +0000)
* Ignores the empty lines that may have trailing white-space in the
  license header. This allows formatting of the license header either
with or without trailing white-space, which differs between different
versions of Eclipse (as well as between IDEs).

Change-Id: If97d2cfe169accd6d05e44521c9ca5265d715772

checkstyle/vaadin-checkstyle.xml

index 1caf480582fd3a046af742d038fd630598e14995..9dfe1c915660a1cc41d913d61e770b5ad3cf0f38 100644 (file)
@@ -90,6 +90,8 @@
     <module name="Header">
         <property name="headerFile" value="${checkstyle.header.file}" />
         <property name="fileExtensions" value="java" />
+        <!-- ignore empty lines that may or may not have trailing white-space -->
+        <property name="ignoreLines" value="3, 7, 9"/>
     </module>
 
     <module name="TreeWalker">