feat: M2 likes — full track/album/artist starring (closes M2) #20

Merged
bvandeusen merged 262 commits from dev into main 2026-04-26 23:53:43 -04:00
Showing only changes of commit 954bb8963f - Show all commits
+5 -3
View File
@@ -13,9 +13,11 @@ naming:
- "Composable" - "Composable"
complexity: complexity:
# Room DAO interfaces accumulate one method per query and naturally # Room types naturally accumulate one method per query (Dao) or one
# exceed the default 11-function threshold. The rule still applies to # accessor per entity (Database). Scope the exception to these
# non-DAO interfaces where >11 methods IS a smell worth flagging. # annotations; the rule still applies to non-Room interfaces / classes
# where >11 methods IS a smell worth flagging.
TooManyFunctions: TooManyFunctions:
ignoreAnnotated: ignoreAnnotated:
- "Dao" - "Dao"
- "Database"