From f52c44c4f33636dbc0558af28619cf82128c0967 Mon Sep 17 00:00:00 2001 From: pq Date: Thu, 16 Apr 2026 19:22:59 -0700 Subject: [PATCH] [ai] add Claude config --- CLAUDE.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 000000000..b832fac27 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,12 @@ +# Flutter IntelliJ Plugin — Claude Code Guide + +@.gemini/styleguide.md + +## Additional Rules + +- No I/O or heavy computation on the EDT (IntelliJ Threading Model). +- All `AnAction` subclasses must be stateless (no mutable instance fields). +- Use `io.flutter.logging.PluginLogger` (or IntelliJ's `Logger`) for all logging; never `System.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.