Skip to content

Commit

Permalink
Rename checktyle file as it is not an EJS template
Browse files Browse the repository at this point in the history
  • Loading branch information
jdubois committed Sep 20, 2019
1 parent cecd357 commit 1c32c42
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions generators/server/templates/config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"https://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<module name="Checker">

<property name="charset" value="UTF-8"/>
<!-- Configure checker to run on files with all file extensions (empty is all) -->
<property name="fileExtensions" value=""/>

<module name="io.spring.nohttp.checkstyle.check.NoHttpCheck">
<property name="whitelistFileName" value="${nohttp.checkstyle.whitelistFileName}" default=""/>
</module>

<module name="SuppressionFilter">
<property name="file" value="${config_loc}/suppressions.xml" default=""/>
<property name="optional" value="true"/>
</module>

<!-- Allow suppression with comments
// CHECKSTYLE:OFF
... ignored content ...
// CHECKSTYLE:ON
-->
<module name="SuppressWithPlainTextCommentFilter"/>
</module>

0 comments on commit 1c32c42

Please sign in to comment.