mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 07:30:52 -07:00
16 lines
537 B
Markdown
16 lines
537 B
Markdown
## React & Ink (CLI UI)
|
|
|
|
- **Side Effects**: Use reducers for complex state transitions; avoid `setState`
|
|
triggers in callbacks.
|
|
- Always fix react-hooks/exhaustive-deps lint errors by adding the missing
|
|
dependencies.
|
|
- **Shortcuts**: only define keyboard shortcuts in
|
|
`packages/cli/src/config/keyBindings.ts
|
|
|
|
## Testing
|
|
|
|
- **Utilities**: Use `renderWithProviders` and `waitFor` from
|
|
`packages/cli/src/test-utils/`.
|
|
- **Snapshots**: Use `toMatchSnapshot()` to verify Ink output.
|
|
- **Mocks**: Use mocks as sparingly as possilble.
|