From 8b2fe869721d91223382ffb082dc7468e138b72c Mon Sep 17 00:00:00 2001 From: sylvain Date: Sun, 1 Feb 2026 16:12:07 -0500 Subject: [PATCH] Update GEMINI.md --- GEMINI.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/GEMINI.md b/GEMINI.md index 2bf5423..c4809d9 100644 --- a/GEMINI.md +++ b/GEMINI.md @@ -2,19 +2,14 @@ ## Critical Rules ### 1. Code Organization - - Many small files over few large files - High cohesion, low coupling - 200-400 lines typical, 800 max per file - Organize by feature/domain, not by type ### 2. Code Style - - No emojis in code, comments, or documentation - Immutability always - never mutate objects or arrays -- No console.log in production code -- Proper error handling with try/catch -- Input validation with Zod or similar - Always follow existing coding style when adding new code - Avoid nested matching pattern as much as possible