-
Notifications
You must be signed in to change notification settings - Fork 216
/
detekt.yml
44 lines (36 loc) · 845 Bytes
/
detekt.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
32
33
34
35
36
37
38
39
40
41
42
43
44
config:
validation: true # verifies that this config file is valid
warningsAsErrors: false
comments:
excludes: &standardExcludes
- '**/bin/**'
- '**/build/**'
- '**/src/test/**'
complexity:
excludes: *standardExcludes
empty-blocks:
excludes: *standardExcludes
exceptions:
excludes: *standardExcludes
SwallowedException:
ignoredExceptionTypes:
- CancellationException
- InterruptedException
- MalformedURLException
- NumberFormatException
- ParseException
- MissingPropertyException
naming:
excludes: *standardExcludes
performance:
excludes: *standardExcludes
potential-bugs:
excludes: *standardExcludes
style:
excludes: *standardExcludes
MaxLineLength:
active: false
WildcardImport:
excludeImports:
- java.util.*
- org.hamcrest.Matchers.*