-
Notifications
You must be signed in to change notification settings - Fork 0
/
.checkstyle
19 lines (18 loc) · 1.14 KB
/
.checkstyle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<fileset-config file-format-version="1.2.0" simple-config="false" sync-formatter="false">
<local-check-config name="basic" location="checkstyle-basic.xml" type="project" description="Basic Checkstyle Checks">
<additional-data name="protect-config-file" value="false"/>
</local-check-config>
<local-check-config name="add" location="checkstyle-add.xml" type="project" description="Additional Checkstyle checks">
<additional-data name="protect-config-file" value="false"/>
</local-check-config>
<fileset name="all except generated" enabled="true" check-config-name="basic" local="true">
<file-match-pattern match-pattern="^src/" include-pattern="true"/>
<file-match-pattern match-pattern="^src/generated/" include-pattern="false"/>
</fileset>
<fileset name="all except generated and test" enabled="true" check-config-name="add" local="true">
<file-match-pattern match-pattern="^src/" include-pattern="true"/>
<file-match-pattern match-pattern="^src/generated/" include-pattern="false"/>
<file-match-pattern match-pattern="^src/test/" include-pattern="false"/>
</fileset>
</fileset-config>