github.com/rancher/moq@v0.0.0-20200712062324-13d1f37d2d77/pkg/moq/golint_initialisms.go (about)

     1  package moq
     2  
     3  // This list comes from the golint codebase. Golint will complain about any of
     4  // these being mixed-case, like "Id" instead of "ID".
     5  var golintInitialisms = []string{
     6  	"ACL",
     7  	"API",
     8  	"ASCII",
     9  	"CPU",
    10  	"CSS",
    11  	"DNS",
    12  	"EOF",
    13  	"GUID",
    14  	"HTML",
    15  	"HTTP",
    16  	"HTTPS",
    17  	"ID",
    18  	"IP",
    19  	"JSON",
    20  	"LHS",
    21  	"QPS",
    22  	"RAM",
    23  	"RHS",
    24  	"RPC",
    25  	"SLA",
    26  	"SMTP",
    27  	"SQL",
    28  	"SSH",
    29  	"TCP",
    30  	"TLS",
    31  	"TTL",
    32  	"UDP",
    33  	"UI",
    34  	"UID",
    35  	"UUID",
    36  	"URI",
    37  	"URL",
    38  	"UTF8",
    39  	"VM",
    40  	"XML",
    41  	"XMPP",
    42  	"XSRF",
    43  	"XSS",
    44  }