1---2name: flow3description: Use when you need to run Flow type checking, or when seeing Flow type errors in React code.4---56# Flow Type Checking78Arguments:9- $ARGUMENTS: Renderer to check (default: dom-node)1011## Renderers1213| Renderer | When to Use |14|----------|-------------|15| `dom-node` | Default, recommended for most changes |16| `dom-browser` | Browser-specific DOM code |17| `native` | React Native |18| `fabric` | React Native Fabric |1920## Instructions21221. Run `yarn flow $ARGUMENTS` (use `dom-node` if no argument)232. Report type errors with file locations243. For comprehensive checking (slow), use `yarn flow-ci`2526## Common Mistakes2728- **Running without a renderer** - Always specify or use default `dom-node`29- **Ignoring suppressions** - Check if `$FlowFixMe` comments are masking real issues30- **Missing type imports** - Ensure types are imported from the correct package
Findings
✓ No findings reported for this file.