-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename checktyle file as it is not an EJS template
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
generators/server/templates/config/checkstyle/checkstyle.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |