We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 662daed commit f52c44cCopy full SHA for f52c44c
1 file changed
CLAUDE.md
@@ -0,0 +1,12 @@
1
+# Flutter IntelliJ Plugin — Claude Code Guide
2
+
3
+@.gemini/styleguide.md
4
5
+## Additional Rules
6
7
+- No I/O or heavy computation on the EDT (IntelliJ Threading Model).
8
+- All `AnAction` subclasses must be stateless (no mutable instance fields).
9
+- Use `io.flutter.logging.PluginLogger` (or IntelliJ's `Logger`) for all logging; never `System.out`.
10
+- All new files must include the standard Chromium Authors copyright header.
11
+- Zero-Formatting Policy: do not comment on indentation, spacing, or brace placement.
12
+- Categorize code suggestions with `[MUST-FIX]`, `[CONCERN]`, or `[NIT]` severity prefixes.
0 commit comments