@.gemini/styleguide.md
- No I/O or heavy computation on the EDT (IntelliJ Threading Model).
- All
AnActionsubclasses must be stateless (no mutable instance fields). - Use
io.flutter.logging.PluginLogger(or IntelliJ'sLogger) for all logging; neverSystem.out. - All new files must include the standard Chromium Authors copyright header.
- Zero-Formatting Policy: do not comment on indentation, spacing, or brace placement.
- Categorize code suggestions with
[MUST-FIX],[CONCERN], or[NIT]severity prefixes.