-
Notifications
You must be signed in to change notification settings - Fork 0
/
.codeclimate.yml
32 lines (31 loc) · 1.07 KB
/
.codeclimate.yml
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
plugins:
checkstyle:
enabled: true
checks:
# disable javadoc checks for this repo
com.puppycrawl.tools.checkstyle.checks.javadoc.JavadocMethodCheck:
enabled: false
# disable name checks for this repo
com.puppycrawl.tools.checkstyle.checks.naming.LocalVariableNameCheck:
enabled: false
com.puppycrawl.tools.checkstyle.checks.naming.ParameterNameCheck:
enabled: false
com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck:
enabled: false
# allow multiple variables to be declared on one line in this repo
com.puppycrawl.tools.checkstyle.checks.coding.MultipleVariableDeclarationsCheck:
enabled: false
# allow lazy block statements in this repo
com.puppycrawl.tools.checkstyle.checks.blocks.NeedBracesCheck:
enabled: false
fixme:
enabled: true
sonar-java:
enabled: true
checks:
squid:S00112: # Requires dedicated exceptions even for tests
enabled: false
config:
sonar.java.source: 1.8
tests_patterns:
- src/test/**