generated from rosetta-models/blank-drr-base-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckstyle.xml
More file actions
25 lines (25 loc) · 1.29 KB
/
checkstyle.xml
File metadata and controls
25 lines (25 loc) · 1.29 KB
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
<!--
Copyright (C) 2022 REGnosys Limited. All rights reserved This software is the confidential and proprietary information of REGnosys Limited.
You shall not disclose such confidential information and shall use it only in accordance with the terms of the license agreement you entered into with REGnosys Limited.
See https://ui.rc.rosetta-technology.io/#/documents/rosetta-core/RC-1
-->
<!DOCTYPE module PUBLIC
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<module name="Checker">
<property name="localeCountry" value="UK"/>
<property name="localeLanguage" value="en"/>
<module name="TreeWalker">
<!-- Forbid using Google Inject in favour of javax/jakarta Inject. -->
<module name="IllegalImport">
<property name="illegalClasses"
value="com.google.inject.Inject, com.google.inject.name.Named, com.google.inject.Provider, com.google.inject.Singleton" />
<property name="illegalPkgs"
value="javax.inject" />
</module>
</module>
<module name="BeforeExecutionExclusionFileFilter">
<!-- Exclude any generated source folders -->
<property name="fileNamePattern" value=".*-gen[\\/].*$" />
</module>
</module>