From a443ff8fd958ad13021b87509c8392b529e76867 Mon Sep 17 00:00:00 2001 From: Brian Derr Date: Wed, 1 May 2024 10:00:08 -0700 Subject: [PATCH] add 'ANSI' as an allowable initialism --- ident/ident.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ident/ident.go b/ident/ident.go index 9fa9258..1737877 100644 --- a/ident/ident.go +++ b/ident/ident.go @@ -181,6 +181,7 @@ func isTwoInitialisms(word string) (string, string, bool) { // For instance, "ID" is fine (Freudian code is rare), but "AND" is not. var initialisms = map[string]struct{}{ "ACL": {}, + "ANSI": {}, "API": {}, "ASCII": {}, "CPU": {},