Skip to content

Commit

Permalink
chore: suppressions
Browse files Browse the repository at this point in the history
  • Loading branch information
tassiluca committed Mar 3, 2024
1 parent 64e4647 commit 0b68fa9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import kotlinx.coroutines.launch
internal class GitHubAnalyzerByFlows(private val provider: GitHubRepositoryProvider) : Analyzer {

@OptIn(ExperimentalCoroutinesApi::class)
@Suppress("InjectDispatcher")
override suspend fun analyze(
organizationName: String,
updateResults: suspend (RepositoryReport) -> Unit,
Expand All @@ -31,6 +32,7 @@ internal class GitHubAnalyzerByFlows(private val provider: GitHubRepositoryProvi
}
}

@Suppress("InjectDispatcher")
private fun analyzeAll(repositories: List<Repository>): Flow<RepositoryReport> = channelFlow {
repositories.forEach { repository ->
launch {
Expand Down
27 changes: 0 additions & 27 deletions commons/src/main/kotlin/FlowTests.kt

This file was deleted.

2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gitHooks {
commitMsg {
conventionalCommits()
}
createHooks()
createHooks(overwriteExisting = true)
}

rootProject.name = "direct-style-experiments"
Expand Down

0 comments on commit 0b68fa9

Please sign in to comment.