We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 078811e commit e2fc8b0Copy full SHA for e2fc8b0
1 file changed
config/detekt/detekt.yml
@@ -25,13 +25,19 @@ empty-blocks:
25
comments:
26
UndocumentedPublicClass:
27
active: true
28
- excludes: [ *testFolders, '**/generated-sources/**' ]
+ excludes: &testAndGeneratedFolders
29
+ - '**/test/**'
30
+ - '**/commonTest/**'
31
+ - '**/jvmTest/**'
32
+ - '**/jsTest/**'
33
+ - '**/iosTest/**'
34
+ - '**/generated-sources/**'
35
ignoreDefaultCompanionObject: true
36
UndocumentedPublicFunction:
37
38
+ excludes: *testAndGeneratedFolders
39
UndocumentedPublicProperty:
40
41
42
searchProtectedProperty: false
43
ignoreEnumEntries: true
0 commit comments