Skip to content

Commit bd2567c

Browse files
committed
chore: update agent rules
1 parent e501ec1 commit bd2567c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)