Skip to content

Commit

Permalink
Exclude Detekt checks for docs in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrewartha committed Dec 9, 2023
1 parent 062c693 commit 177829a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,22 +65,23 @@ comments:
endOfSentenceFormat: '([.?!][ \t\n\r\f<])|([.?!:]$)'
KDocReferencesNonPublicProperty:
active: false
excludes: [ '**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**' ]
excludes: [ '**/test/**' ]
OutdatedDocumentation:
active: true
matchTypeParameters: true
matchDeclarationsOrder: true
allowParamOnConstructorProperties: true
UndocumentedPublicClass:
active: true
excludes: [ ]
excludes: [ '**/test/**' ]
searchInNestedClass: true
searchInInnerClass: true
searchInInnerObject: true
searchInInnerInterface: true
ignoreAnnotated: [ 'Test' ]
UndocumentedPublicFunction:
active: true
excludes: [ ]
excludes: [ '**/test/**' ]
ignoreAnnotated: [ 'Composable' ]
UndocumentedPublicProperty:
active: true
Expand Down

0 comments on commit 177829a

Please sign in to comment.