From c2baf6f30ed3deb7ea5a327bed3f37620e62f9dc Mon Sep 17 00:00:00 2001 From: Elle Mouton Date: Mon, 1 Sep 2025 10:16:44 +0200 Subject: [PATCH] .gemini: ignore char wrapping during code review Gemini code review agent is bad at counting characters. --- .gemini/styleguide.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gemini/styleguide.md b/.gemini/styleguide.md index 80466dbaf..a9b498a5b 100644 --- a/.gemini/styleguide.md +++ b/.gemini/styleguide.md @@ -11,7 +11,9 @@ - The line length MUST NOT exceed 80 characters, this is very important. You must count the Golang indentation (tabulator character) as 8 spaces when determining the line length. Use creative approaches or the wrapping rules - specified below to make sure the line length isn't exceeded. + specified below to make sure the line length isn't exceeded. HOWEVER: during + code reviews, please leave this check up to the linter and do not comment on + it (why? because gemini is bad at counting characters). - Every function must be commented with its purpose and assumptions. - Function comments must begin with the function name. - Function comments should be complete sentences.