From 74dcb6b1c92e30c209a620a1b873ace2093d3bfa Mon Sep 17 00:00:00 2001 From: Travis Prescott Date: Wed, 6 May 2026 10:19:49 -0700 Subject: [PATCH] [AVC] Update golang filter based on April 2026 feedback --- .../python-packages/apiview-copilot/metadata/golang/filter.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/python-packages/apiview-copilot/metadata/golang/filter.yaml b/packages/python-packages/apiview-copilot/metadata/golang/filter.yaml index feb1a30408f..6a6f39d8c4c 100644 --- a/packages/python-packages/apiview-copilot/metadata/golang/filter.yaml +++ b/packages/python-packages/apiview-copilot/metadata/golang/filter.yaml @@ -1,3 +1,5 @@ exceptions: | 1. DO NOT make comments that don't actually identify a problem. 2. DO NOT comment on lack of documentation comments + 3. DO NOT suggest changing error code constant string values to match the constant name's capitalization. Error code values are wire-format strings defined by the service and must not be altered. + 4. DO NOT suggest renaming functions that use "WithNoCredential" to "WithoutCredential". The "NoCredential" naming is the established Go SDK pattern.