forked from sosy-lab/java-smt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.checkstyle
31 lines (27 loc) · 1.6 KB
/
.checkstyle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of SoSy-Lab Java-Project Template,
a collection of common files and build definitions for Java projects:
https://gitlab.com/sosy-lab/software/java-project-template
SPDX-FileCopyrightText: 2018-2020 Dirk Beyer <https://www.sosy-lab.org>
SPDX-License-Identifier: Apache-2.0
-->
<fileset-config file-format-version="1.2.0" simple-config="false" sync-formatter="false">
<local-check-config name="SoSy-Lab" location="build/checkstyle.xml" type="project" description="">
<additional-data name="protect-config-file" value="false"/>
</local-check-config>
<local-check-config name="Test-Code Configuration" location="build/checkstyle.test.xml" type="project" description="">
<additional-data name="protect-config-file" value="false"/>
</local-check-config>
<fileset name="regular" enabled="true" check-config-name="SoSy-Lab" local="true">
<file-match-pattern match-pattern=".java$" include-pattern="true"/>
<file-match-pattern match-pattern="/test/.*\.java$" include-pattern="false"/>
<file-match-pattern match-pattern="Test(Base|Suite|0)?.java$" include-pattern="false"/>
<file-match-pattern match-pattern=".apt-generated" include-pattern="false"/>
</fileset>
<fileset name="Test classes" enabled="true" check-config-name="Test-Code Configuration" local="true">
<file-match-pattern match-pattern="Test(Base|Suite|0)?.java$" include-pattern="true"/>
<file-match-pattern match-pattern="/test/.*\.java$" include-pattern="true"/>
<file-match-pattern match-pattern=".apt-generated" include-pattern="false"/>
</fileset>
</fileset-config>