Preparing report...

Report for github.com/alyx/go-daddy

A+    Excellent!    Found 4 issues across 23 files

Tweet

gofmt100%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command

No problems detected. Good job!


go_vet100%

go vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.

No problems detected. Good job!


gocyclo95%

Gocyclo calculates cyclomatic complexities of functions in Go source code. The cyclomatic complexity of a function is calculated according to the following rules: 1 is the base complexity of a function +1 for each 'if', 'for', 'case', '&&' or '||' Go Report Card warns on functions with cyclomatic complexity > 15.


golint86%

Golint is a linter for Go source code.

    • go-daddy/daddy/certificates_models.go
    • Line 8: warning: exported type Certificate should have comment or be unexported (golint)
    • Line 29: warning: exported type CertificateAction should have comment or be unexported (golint)
    • Line 34: warning: exported type CertificateBundle should have comment or be unexported (golint)
    • Line 39: warning: exported type CertificateCallback should have comment or be unexported (golint)
    • Line 43: warning: exported type CertificateContact should have comment or be unexported (golint)
    • Line 53: warning: exported type CertificateCreate should have comment or be unexported (golint)
    • Line 67: warning: exported type CertificateIdentifier should have comment or be unexported (golint)
    • Line 71: warning: exported type CertificateOrganization should have comment or be unexported (golint)
    • Line 76: warning: exported type CertificateOrganizationCreate should have comment or be unexported (golint)
    • Line 85: warning: exported type CertificateReissue should have comment or be unexported (golint)
    • Line 94: warning: exported type CertificateRenew should have comment or be unexported (golint)
    • Line 98: warning: exported type CertificateRevoke should have comment or be unexported (golint)
    • Line 102: warning: exported type CertificateSiteSeal should have comment or be unexported (golint)
    • Line 106: warning: exported type EmailHistory should have comment or be unexported (golint)
    • Line 117: warning: exported type JurisdictionOfIncorporation should have comment or be unexported (golint)
    • Line 124: warning: exported type PEMCertificates should have comment or be unexported (golint)
    • Line 131: warning: exported type SubjectAlternativeNameDetails should have comment or be unexported (golint)
    • go-daddy/daddy/domains_models.go
    • Line 63: warning: exported type DomainDetail should have comment or be unexported (golint)
    • Line 69: warning: exported type DomainPurchase should have comment or be unexported (golint)
    • Line 79: warning: exported type DomainPurchaseResponse should have comment or be unexported (golint)
    • Line 86: warning: exported type DomainRenew should have comment or be unexported (golint)
    • Line 90: warning: exported type DomainSuggestion should have comment or be unexported (golint)
    • Line 94: warning: exported type DomainSummary should have comment or be unexported (golint)
    • Line 115: warning: exported type DomainForwardingMask should have comment or be unexported (golint)
    • Line 121: warning: exported type DomainForwardingCreate should have comment or be unexported (golint)
    • Line 127: warning: exported type DomainForwarding should have comment or be unexported (golint)
    • Line 132: warning: exported type DomainTransferIn should have comment or be unexported (golint)
    • Line 141: warning: exported type DomainUpdate should have comment or be unexported (golint)
    • Line 148: warning: exported type DomainContactsBulk should have comment or be unexported (golint)
    • Line 155: warning: exported type ErrorDomainContactsValidate should have comment or be unexported (golint)
    • Line 162: warning: exported type ErrorFieldDomainContactsValidate should have comment or be unexported (golint)
    • Line 167: warning: exported type PrivacyPurchase should have comment or be unexported (golint)
    • Line 171: warning: exported type RealNameValidation should have comment or be unexported (golint)
    • Line 175: warning: exported type TldSummary should have comment or be unexported (golint)
    • Line 180: warning: exported type VerificationDomainName should have comment or be unexported (golint)
    • Line 184: warning: exported type VerificationRealName should have comment or be unexported (golint)
    • Line 188: warning: exported type VerificationsDomain should have comment or be unexported (golint)
    • go-daddy/daddy/orders_models.go
    • Line 8: warning: exported type BillTo should have comment or be unexported (golint)
    • Line 13: warning: exported type LineItem should have comment or be unexported (golint)
    • Line 23: warning: exported type LineItemPricing should have comment or be unexported (golint)
    • Line 34: warning: exported type LineItemSummary should have comment or be unexported (golint)
    • Line 38: warning: exported type LineItemTaxCollector should have comment or be unexported (golint)
    • Line 42: warning: exported type LineItemPricingTaxDetail should have comment or be unexported (golint)
    • Line 47: warning: exported type LineItemUnitPricing should have comment or be unexported (golint)
    • Line 56: warning: exported type Order should have comment or be unexported (golint)
    • Line 66: warning: exported type OrderFee should have comment or be unexported (golint)
    • Line 71: warning: exported type OrderList should have comment or be unexported (golint)
    • Line 76: warning: exported type OrderPricing should have comment or be unexported (golint)
    • Line 88: warning: exported type OrderSummary should have comment or be unexported (golint)
    • Line 97: warning: exported type OrderSummaryPricing should have comment or be unexported (golint)
    • Line 101: warning: exported type OrderPayment should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!