refactor(build): adopt Slack lints

This commit is contained in:
Harsh Shandilya 2023-09-28 14:09:09 +05:30
parent eb449740eb
commit ed32186984
No known key found for this signature in database
10 changed files with 31 additions and 11 deletions

View file

@ -4,7 +4,7 @@
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
*/
@file:Suppress("InjectDispatcher") // False-positive
@file:Suppress("RawDispatchersUse") // False-positive
package dev.msfjarvis.claw.core.coroutines

View file

@ -28,7 +28,7 @@ import kotlinx.coroutines.CoroutineDispatcher
@ContributesTo(ApplicationScope::class)
interface CoroutineDispatcherModule {
@Binds fun DefaultDispatcherProvider.bind(): DispatcherProvider
@Binds fun bindDispatcherProvider(impl: DefaultDispatcherProvider): DispatcherProvider
companion object {
@[Provides IODispatcher]