Skip to content

Commit

Permalink
Fix new detekt error
Browse files Browse the repository at this point in the history
  • Loading branch information
vinaygaba committed Dec 11, 2024
1 parent d66d510 commit eea6124
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ class ShowkaseProcessor @JvmOverloads constructor(
?.toSet()?.let { set.addAll(it) }
return set
}
override fun getSupportedOptions() = mutableSetOf("skipPrivatePreviews", "skipFunctionsWithPreviewAnnotation", "multiPreviewType")
override fun getSupportedOptions() = mutableSetOf(
"skipPrivatePreviews",
"skipFunctionsWithPreviewAnnotation",
"multiPreviewType"
)

override fun process(environment: XProcessingEnv, round: XRoundEnv) {
val componentMetadata = processComponentAnnotation(round)
Expand Down

0 comments on commit eea6124

Please sign in to comment.