-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy path.checkstyle
18 lines (17 loc) · 1.27 KB
/
.checkstyle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false">
<local-check-config name="Eclipse CS configuration" location="/eclipse-cs/config/checkstyle_checks.xml" type="project" description="Shared configuration for all Eclipse CS plugins.">
<property name="checkstyle.cache.file" value="target/checkstyle-cache"/>
<property name="checkstyle.suppressions.file" value="${config_loc}/suppressions.xml"/>
<property name="checkstyle.regexp.header.file" value="${config_loc}/java_regexp.header"/>
<property name="checkstyle.regexp.old.header.file" value="${config_loc}/java_regexp_old.header"/>
<property name="checkstyle.suppressions-xpath.file" value="${config_loc}/suppressions.xml"/>
<property name="checkstyle.importcontrol.file" value="${config_loc}/import-control.xml"/>
<property name="checkstyle.importcontroltest.file" value="${config_loc}/import-control-test.xml"/>
<additional-data name="protect-config-file" value="false"/>
</local-check-config>
<fileset name="all" enabled="true" check-config-name="Eclipse CS configuration" local="true">
<file-match-pattern match-pattern="." include-pattern="true"/>
</fileset>
<filter name="DerivedFiles" enabled="true"/>
</fileset-config>