File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ suspend fun getData(): Result<Data> = withContext(Dispatchers.IO) {
192192- ALWAYS be mindful of thread safety when working with mutable lists & state
193193- ALWAYS split screen composables into parent accepting viewmodel + inner private child accepting state and callbacks ` Content() `
194194- ALWAYS name lambda parameters in a composable function using present tense, NEVER use past tense
195- - ALWAYS list 3 suggested commit messages after implementation work
195+ - ALWAYS list 3 suggested commit messages after implementation work for the entire set of uncommitted changes
196196- NEVER use ` wheneverBlocking ` in unit test expression body functions wrapped in a ` = test {} ` lambda
197197- ALWAYS wrap unit tests ` setUp ` methods mocking suspending calls with ` runBlocking ` , e.g ` setUp() = runBlocking { } `
198198- ALWAYS add business logic to Repository layer via methods returning ` Result<T> ` and use it in ViewModels
You can’t perform that action at this time.
0 commit comments