fix(android): suppress TooManyFunctions on DatabaseModule

DatabaseModule's whole job is to host one @Provides per DAO; the
12/11 trip is structural, not a smell. Adding a second module file
to split DAO providers arbitrarily by family would be busier work,
not cleaner. Suppress with a comment that explains why.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-25 21:12:38 -04:00
parent 118f3d31f3
commit b342a7c41b
@@ -22,6 +22,7 @@ import javax.inject.Singleton
@Module
@InstallIn(SingletonComponent::class)
@Suppress("TooManyFunctions") // Hilt @Provides bridges per DAO; one per family.
object DatabaseModule {
@Provides
@Singleton