forked from oss-review-toolkit/ort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.detekt.yml
50 lines (45 loc) · 1.03 KB
/
.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
45
46
47
48
49
50
# Configuration of Detekt rule sets, see: https://github.com/arturbosch/detekt#rulesets
build:
maxIssues: 0
weights:
comments: 0
comments:
CommentOverPrivateMethod:
active: false
CommentOverPrivateProperty:
active: false
complexity:
LargeClass:
threshold: 150
NestedBlockDepth:
threshold: 4
performance:
SpreadOperator:
active: false
style:
ForbiddenComment:
active: false
MaxLineLength:
active: true
maxLineLength: 120
NewLineAtEndOfFile:
active: true
SpacingBetweenPackageAndImports:
active: true
UnusedImports:
active: true
WildcardImport:
active: true
excludeImports: '
ch.frankel.slf4k.*,
com.here.ort.analyzer.managers.*,
com.here.ort.commands.*,
com.here.ort.downloader.vcs.*,
com.here.ort.reporter.reporters.*,
com.here.ort.scanner.scanners.*,
com.here.ort.scanner.storages.*,
com.here.ort.spdx.SpdxLicense.*,
com.here.ort.spdx.SpdxLicenseException.*,
kotlinx.html.*,
kotlinx.html.dom.*
'