File tree Expand file tree Collapse file tree 3 files changed +27
-6
lines changed
build-logic/src/main/kotlin Expand file tree Collapse file tree 3 files changed +27
-6
lines changed Original file line number Diff line number Diff line change
1
+ style :
2
+ MaxLineLength :
3
+ maxLineLength : 140
4
+
5
+ processors :
6
+ active : true
7
+ exclude :
8
+ - ' DetektProgressListener'
9
+ - ' FunctionCountProcessor'
10
+ - ' PropertyCountProcessor'
11
+ - ' ClassCountProcessor'
12
+ - ' PackageCountProcessor'
13
+ - ' KtFileCountProcessor'
14
+
15
+ console-reports :
16
+ active : true
17
+ exclude :
18
+ - ' ProjectStatisticsReport'
19
+ - ' ComplexityReport'
20
+ - ' NotificationReport'
21
+ - ' FindingsReport'
22
+ - ' BuildFailureReport'
Original file line number Diff line number Diff line change @@ -32,12 +32,8 @@ kotlin {
32
32
languageVersion.set(JavaLanguageVersion .of(21 ))
33
33
}
34
34
35
- target {
36
- compilations.configureEach {
37
- compilerOptions.configure {
38
- freeCompilerArgs.addAll(listOf (" -Xcontext-receivers" ))
39
- }
40
- }
35
+ compilerOptions {
36
+ freeCompilerArgs.add(" -Xcontext-receivers" )
41
37
}
42
38
}
43
39
Original file line number Diff line number Diff line change
1
+ kotest.framework.discovery.jar.scan.disable =true
2
+ kotest.framework.classpath.scanning.config.disable =true
3
+ kotest.framework.classpath.scanning.autoscan.disable =true
You can’t perform that action at this time.
0 commit comments