Preparing report...

Report for github.com/ProximaB/das

A    Great!    Found 166 issues across 215 files

Tweet

gofmt71%

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


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!


gocyclo96%

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.

    • das/businesslogic/event.go
    • Line 520: warning: cyclomatic complexity 20 of function (CompetitionEventFactory).GenerateEvent() is high (> 15) (gocyclo)
    • Line 386: warning: cyclomatic complexity 20 of function (OrganizerEventService).ValidateEvent() is high (> 15) (gocyclo)
    • das/businesslogic/competition.go
    • Line 491: warning: cyclomatic complexity 18 of function (CompetitionOfficialInvitationService).UpdateCompetitionOfficialInvitation() is high (> 15) (gocyclo)
    • Line 197: warning: cyclomatic complexity 17 of function (Competition).validateCreateCompetition() is high (> 15) (gocyclo)

golint33%

Golint is a linter for Go source code.

    • das/viewmodel/competition.go
    • Line 10: warning: exported type CompetitionViewModel should have comment or be unexported (golint)
    • Line 28: warning: exported function CompetitionDataModelToViewModel should have comment or be unexported (golint)
    • Line 52: warning: exported type CompetitionDate should have comment or be unexported (golint)
    • Line 56: warning: exported method CompetitionDate.UnmarshalJSON should have comment or be unexported (golint)
    • Line 66: warning: exported method CompetitionDate.MarshalJSON should have comment or be unexported (golint)
    • Line 91: warning: exported method CreateCompetition.ToCompetitionDataModel should have comment or be unexported (golint)
    • Line 122: warning: exported type UpdateCompetitionDTO should have comment or be unexported (golint)
    • das/dataaccess/accountdal/accountstatus.go
    • Line 15: warning: exported type PostgresAccountStatusRepository should have comment or be unexported (golint)
    • Line 20: warning: exported method PostgresAccountStatusRepository.GetAccountStatus should have comment or be unexported (golint)
    • das/businesslogic/competitionentry.go
    • Line 105: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 111: warning: exported method AthleteCompetitionEntryService.DeleteAthleteCompetitionEntry should have comment or be unexported (golint)
    • Line 115: warning: exported method AthleteCompetitionEntryService.SearchAthleteCompetitionEntry should have comment or be unexported (golint)
    • Line 119: warning: exported type CompetitionEntryList should have comment or be unexported (golint)
    • Line 142: warning: exported method CompetitionLeadTagCollection.SetTags should have comment or be unexported (golint)
    • Line 146: warning: exported method CompetitionLeadTagCollection.HasLead should have comment or be unexported (golint)
    • Line 217: warning: exported type PartnershipCompetitionEntryService should have comment or be unexported (golint)
    • Line 222: warning: exported function NewPartnershipCompetitionEntryService should have comment or be unexported (golint)
    • Line 229: warning: exported method PartnershipCompetitionEntryService.CreatePartnershipCompetitionEntry should have comment or be unexported (golint)
    • Line 233: warning: exported method PartnershipCompetitionEntryService.DeletePartnershipCompetitionEntry should have comment or be unexported (golint)
    • Line 237: warning: exported method PartnershipCompetitionEntryService.SearchPartnershipCompetitionEntry should have comment or be unexported (golint)
    • Line 261: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • das/controller/util/util.go
    • Line 13: warning: exported const Http404NoDataFound should have comment (or a comment on this block) or be unexported (golint)
    • Line 18: warning: exported var JsonRequestDecoder should have comment or be unexported (golint)
    • Line 20: warning: exported function ParseRequestData should have comment or be unexported (golint)
    • Line 26: warning: exported function ParseRequestBodyData should have comment or be unexported (golint)
    • Line 31: warning: exported function RespondJsonResult should have comment or be unexported (golint)
    • das/core/scheduler/schedule.go
    • Line 8: warning: comment on exported type EventScheduler should be of the form "EventScheduler ..." (with optional leading article) (golint)
    • Line 18: warning: exported method EventScheduler.SetTotalEntries should have comment or be unexported (golint)
    • Line 26: warning: exported method EventScheduler.SetTotalDances should have comment or be unexported (golint)
    • Line 34: warning: exported method EventScheduler.SetDanceDuration should have comment or be unexported (golint)
    • Line 42: warning: exported method EventScheduler.SetFloorCapacity should have comment or be unexported (golint)
    • Line 50: warning: exported method EventScheduler.SetRecallRate should have comment or be unexported (golint)
    • Line 58: warning: exported method EventScheduler.SetTargetFinalSize should have comment or be unexported (golint)
    • Line 66: warning: exported method EventScheduler.EstimateRounds should have comment or be unexported (golint)
    • Line 102: warning: exported method EventScheduler.EstimateRoundEntries should have comment or be unexported (golint)
    • das/controller/account/profile.go
    • Line 18: warning: exported function NewProfileSearchServer should have comment or be unexported (golint)
    • Line 42: warning: exported method ProfileSearchServer.SearchPartnershipProfileHandler should have comment or be unexported (golint)
    • das/core/skating/scoresheet.go
    • Line 4: warning: exported const ALGORITHM_SKATING should have comment (or a comment on this block) or be unexported (golint)
    • Line 8: warning: exported const PRILIMINARY_ROUND should have comment (or a comment on this block) or be unexported (golint)
    • Line 12: warning: exported type DanceScoreSheet should have comment or be unexported (golint)
    • Line 15: warning: exported function NewDanceScoreSheet should have comment or be unexported (golint)
    • Line 19: warning: exported method DanceScoreSheet.AddJudgeMarks should have comment or be unexported (golint)
    • Line 21: warning: exported method DanceScoreSheet.CalculateDancePlacements should have comment or be unexported (golint)
    • Line 25: warning: exported type RoundScoreSheet should have comment or be unexported (golint)
    • Line 28: warning: exported function NewRoundScoreSheet should have comment or be unexported (golint)
    • Line 32: warning: exported method RoundScoreSheet.AddDanceSheet should have comment or be unexported (golint)
    • Line 34: warning: exported method RoundScoreSheet.CalculateRoundPlacements should have comment or be unexported (golint)
    • das/viewmodel/reference.go
    • Line 15: warning: exported function CountriesToViewModel should have comment or be unexported (golint)
    • Line 38: warning: exported method CreateCountry.ToDataModel should have comment or be unexported (golint)
    • Line 47: warning: exported type DeleteCountry should have comment or be unexported (golint)
    • Line 52: warning: exported type UpdateCountry should have comment or be unexported (golint)
    • Line 59: warning: exported type State should have comment or be unexported (golint)
    • Line 66: warning: exported function StateDataModelToViewModel should have comment or be unexported (golint)
    • Line 75: warning: exported type City should have comment or be unexported (golint)
    • Line 81: warning: exported type CreateCity should have comment or be unexported (golint)
    • Line 86: warning: exported method CreateCity.ToCityDataModel should have comment or be unexported (golint)
    • Line 93: warning: exported type UpdateCity should have comment or be unexported (golint)
    • Line 99: warning: exported type DeleteCity should have comment or be unexported (golint)
    • Line 103: warning: exported type Federation should have comment or be unexported (golint)
    • Line 109: warning: exported type SearchDivisionViewModel should have comment or be unexported (golint)
    • Line 115: warning: exported type DivisionViewModel should have comment or be unexported (golint)
    • Line 121: warning: exported type SearchAge should have comment or be unexported (golint)
    • Line 126: warning: exported type Age should have comment or be unexported (golint)
    • Line 135: warning: exported function AgeDataModelToViewModel should have comment or be unexported (golint)
    • Line 146: warning: exported type Proficiency should have comment or be unexported (golint)
    • Line 152: warning: exported function ProficiencyDataModelToViewModel should have comment or be unexported (golint)
    • Line 160: warning: exported type Style should have comment or be unexported (golint)
    • Line 165: warning: exported type Dance should have comment or be unexported (golint)
    • Line 172: warning: exported type School should have comment or be unexported (golint)
    • Line 178: warning: exported function SchoolDataModelToViewModel should have comment or be unexported (golint)
    • Line 186: warning: exported type Studio should have comment or be unexported (golint)
    • Line 194: warning: exported function StudioDataModelToViewModel should have comment or be unexported (golint)
    • Line 204: warning: exported type Gender should have comment or be unexported (golint)
    • Line 209: warning: exported function GenderDataModelToViewModel should have comment or be unexported (golint)
    • das/dataaccess/referencedal/gender.go
    • Line 13: warning: exported type PostgresGenderRepository should have comment or be unexported (golint)
    • Line 19: warning: exported const DAS_USER_GENDER_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 22: warning: exported method PostgresGenderRepository.GetAllGenders should have comment or be unexported (golint)
    • das/controller/organizer/competition.go
    • Line 15: warning: exported type SearchOrganizerCompetitionViewModel should have comment or be unexported (golint)
    • Line 20: warning: exported type OrganizerCompetitionServer should have comment or be unexported (golint)
    • Line 28: warning: comment on exported method OrganizerCompetitionServer.OrganizerCreateCompetitionHandler should be of the form "OrganizerCreateCompetitionHandler ..." (golint)
    • Line 53: warning: comment on exported method OrganizerCompetitionServer.OrganizerSearchCompetitionHandler should be of the form "OrganizerSearchCompetitionHandler ..." (golint)
    • Line 78: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 89: warning: comment on exported method OrganizerCompetitionServer.OrganizerUpdateCompetitionHandler should be of the form "OrganizerUpdateCompetitionHandler ..." (golint)
    • Line 167: warning: comment on exported method OrganizerCompetitionServer.OrganizerDeleteCompetitionHandler should be of the form "OrganizerDeleteCompetitionHandler ..." (golint)
    • das/controller/admin/provision.go
    • Line 13: warning: exported type OrganizerProvisionServer should have comment or be unexported (golint)
    • Line 19: warning: exported function NewOrganizerProvisionServer should have comment or be unexported (golint)
    • das/controller/reference/studio.go
    • Line 11: warning: exported type StudioServer should have comment or be unexported (golint)
    • Line 15: warning: comment on exported method StudioServer.SearchStudioHandler should be of the form "SearchStudioHandler ..." (golint)
    • Line 38: warning: comment on exported method StudioServer.CreateStudioHandler should be of the form "CreateStudioHandler ..." (golint)
    • Line 43: warning: comment on exported method StudioServer.UpdateStudioHandler should be of the form "UpdateStudioHandler ..." (golint)
    • Line 48: warning: comment on exported method StudioServer.DeleteStudioHandler should be of the form "DeleteStudioHandler ..." (golint)
    • das/controller/partnership/role.go
    • Line 12: warning: exported type PartnershipRoleServer should have comment or be unexported (golint)
    • Line 16: warning: exported method PartnershipRoleServer.GetPartnershipRolesHandler should have comment or be unexported (golint)
    • das/dataaccess/organizer/competition_official.go
    • Line 23: warning: exported type PostgresCompetitionOfficialRepository should have comment or be unexported (golint)
    • Line 28: warning: exported method PostgresCompetitionOfficialRepository.CreateCompetitionOfficial should have comment or be unexported (golint)
    • Line 84: warning: exported method PostgresCompetitionOfficialRepository.DeleteCompetitionOfficial should have comment or be unexported (golint)
    • Line 91: warning: exported method PostgresCompetitionOfficialRepository.SearchCompetitionOfficial should have comment or be unexported (golint)
    • Line 157: warning: exported method PostgresCompetitionOfficialRepository.UpdateCompetitionOfficial should have comment or be unexported (golint)
    • das/viewmodel/competition_official.go
    • Line 5: warning: exported type CompetitionOfficialProfileDTO should have comment or be unexported (golint)
    • Line 14: warning: exported method CompetitionOfficialProfileDTO.Populate should have comment or be unexported (golint)
    • das/viewmodel/provision.go
    • Line 23: warning: exported method OrganizerProvisionSummary.Summarize should have comment or be unexported (golint)
    • Line 36: warning: exported type RoleApplicationAdminView should have comment or be unexported (golint)
    • Line 46: warning: comment on exported type SearchRoleApplicationCriteriaViewModel should be of the form "SearchRoleApplicationCriteriaViewModel ..." (with optional leading article) (golint)
    • das/businesslogic/partnership.go
    • Line 35: warning: exported type PartnershipStatus should have comment or be unexported (golint)
    • Line 42: warning: exported type IPartnershipStatusRepository should have comment or be unexported (golint)
    • Line 139: warning: exported type PartnershipRequestStatus should have comment or be unexported (golint)
    • Line 147: warning: exported type IPartnershipRequestStatusRepository should have comment or be unexported (golint)
    • Line 196: warning: exported type PartnershipRequestService should have comment or be unexported (golint)
    • Line 202: warning: exported function NewPartnershipRequestService should have comment or be unexported (golint)
    • Line 210: warning: exported method PartnershipRequestService.CreatePartnershipRequest should have comment or be unexported (golint)
    • Line 378: warning: exported function RespondPartnershipRequest should have comment or be unexported (golint)
    • das/dataaccess/partnershipdal/partnershiprequeststatus.go
    • Line 14: warning: exported const DAS_PARTNERSHIP_REQUEST_STATUS_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 19: warning: exported type PostgresPartnershipRequestStatusRepository should have comment or be unexported (golint)
    • Line 24: warning: exported method PostgresPartnershipRequestStatusRepository.GetPartnershipRequestStatus should have comment or be unexported (golint)
    • das/controller/competition/competition.go
    • Line 12: warning: exported type PublicCompetitionServer should have comment or be unexported (golint)
    • Line 18: warning: comment on exported method PublicCompetitionServer.SearchCompetitionHandler should be of the form "SearchCompetitionHandler ..." (golint)
    • Line 25: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 45: warning: comment on exported method PublicCompetitionServer.GetUniqueEventFederationHandler should be of the form "GetUniqueEventFederationHandler ..." (golint)
    • Line 80: warning: comment on exported method PublicCompetitionServer.GetEventUniqueDivisionsHandler should be of the form "GetEventUniqueDivisionsHandler ..." (golint)
    • Line 115: warning: comment on exported method PublicCompetitionServer.GetEventUniqueAgesHandler should be of the form "GetEventUniqueAgesHandler ..." (golint)
    • Line 151: warning: comment on exported method PublicCompetitionServer.GetEventUniqueProficienciesHandler should be of the form "GetEventUniqueProficienciesHandler ..." (golint)
    • Line 180: warning: comment on exported method PublicCompetitionServer.GetEventUniqueStylesHandler should be of the form "GetEventUniqueStylesHandler ..." (golint)
    • das/businesslogic/reference.go
    • Line 69: warning: exported type IStateRepository should have comment or be unexported (golint)
    • Line 76: warning: exported method State.GetCities should have comment or be unexported (golint)
    • Line 126: warning: exported type Federation should have comment or be unexported (golint)
    • Line 139: warning: exported type SearchFederationCriteria should have comment or be unexported (golint)
    • Line 145: warning: exported type IFederationRepository should have comment or be unexported (golint)
    • Line 152: warning: exported method Federation.GetDivisions should have comment or be unexported (golint)
    • Line 159: warning: exported type Division should have comment or be unexported (golint)
    • Line 172: warning: exported type SearchDivisionCriteria should have comment or be unexported (golint)
    • Line 178: warning: exported type IDivisionRepository should have comment or be unexported (golint)
    • Line 216: warning: exported type Proficiency should have comment or be unexported (golint)
    • Line 227: warning: exported type SearchProficiencyCriteria should have comment or be unexported (golint)
    • Line 233: warning: exported type IProficiencyRepository should have comment or be unexported (golint)
    • Line 240: warning: exported type Style should have comment or be unexported (golint)
    • Line 250: warning: exported type SearchStyleCriteria should have comment or be unexported (golint)
    • Line 255: warning: exported type IStyleRepository should have comment or be unexported (golint)
    • Line 297: warning: exported type School should have comment or be unexported (golint)
    • Line 307: warning: exported type SearchSchoolCriteria should have comment or be unexported (golint)
    • Line 314: warning: exported type ISchoolRepository should have comment or be unexported (golint)
    • Line 321: warning: exported type Studio should have comment or be unexported (golint)
    • Line 333: warning: exported type SearchStudioCriteria should have comment or be unexported (golint)
    • Line 341: warning: exported type IStudioRepository should have comment or be unexported (golint)
    • Line 349: warning: exported const GENDER_MALE should have comment (or a comment on this block) or be unexported (golint)
    • Line 354: warning: exported type IGenderRepository should have comment or be unexported (golint)
    • Line 358: warning: exported type Gender should have comment or be unexported (golint)
    • das/viewmodel/partnership.go
    • Line 8: warning: exported type Partnership should have comment or be unexported (golint)
    • Line 17: warning: exported type PartnershipTinyViewModel should have comment or be unexported (golint)
    • Line 23: warning: exported function PartnershipToTinyViewModel should have comment or be unexported (golint)
    • Line 31: warning: exported function PartnershipDataModelToViewModel should have comment or be unexported (golint)
    • Line 50: warning: exported type SearchPartnershipRequestViewModel should have comment or be unexported (golint)
    • Line 58: warning: exported type PartnershipRequestResponse should have comment or be unexported (golint)
    • Line 94: warning: exported function PartnershipRoleDataModelToViewModel should have comment or be unexported (golint)
    • das/dataaccess/competition/competition.go
    • Line 16: warning: exported const DAS_COMPETITION_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 39: warning: exported type PostgresCompetitionRepository should have comment or be unexported (golint)
    • Line 44: warning: exported method PostgresCompetitionRepository.CreateCompetition should have comment or be unexported (golint)
    • Line 114: warning: exported method PostgresCompetitionRepository.UpdateCompetition should have comment or be unexported (golint)
    • Line 140: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 147: warning: exported method PostgresCompetitionRepository.DeleteCompetition should have comment or be unexported (golint)
    • Line 159: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 166: warning: exported method PostgresCompetitionRepository.SearchCompetition should have comment or be unexported (golint)
    • das/dataaccess/competition/status.go
    • Line 14: warning: exported const DAS_COMPETITION_STATUS_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 17: warning: exported type PostgresCompetitionStatusRepository should have comment or be unexported (golint)
    • Line 22: warning: exported method PostgresCompetitionStatusRepository.GetCompetitionAllStatus should have comment or be unexported (golint)
    • das/controller/organizer/competition_official_invitation.go
    • Line 11: warning: exported type CompetitionOfficialInvitationServer should have comment or be unexported (golint)
    • Line 17: warning: comment on exported method CompetitionOfficialInvitationServer.OrganizerGetCompetitionOfficialInvitationHandler should be of the form "OrganizerGetCompetitionOfficialInvitationHandler ..." (golint)
    • Line 23: warning: comment on exported method CompetitionOfficialInvitationServer.OrganizerCreateCompetitionOfficialInvitationHandler should be of the form "OrganizerCreateCompetitionOfficialInvitationHandler ..." (golint)
    • Line 39: warning: comment on exported method CompetitionOfficialInvitationServer.OrganizerUpdateCompetitionOfficialInvitationHandler should be of the form "OrganizerUpdateCompetitionOfficialInvitationHandler ..." (golint)
    • das/businesslogic/competition.go
    • Line 10: warning: exported const CompetitionStatusPreRegistration should have comment (or a comment on this block) or be unexported (golint)
    • Line 73: warning: exported method Competition.AddOfficial should have comment or be unexported (golint)
    • Line 97: warning: exported method Competition.GetOfficials should have comment or be unexported (golint)
    • Line 104: warning: exported method Competition.GetStatus should have comment or be unexported (golint)
    • Line 120: warning: exported type OrganizerUpdateCompetition should have comment or be unexported (golint)
    • Line 312: warning: exported type IEventMetaRepository should have comment or be unexported (golint)
    • Line 320: warning: comment on exported method Competition.GetEventUniqueFederations should be of the form "GetEventUniqueFederations ..." (golint)
    • Line 324: warning: exported method Competition.GetEventUniqueDivisions should have comment or be unexported (golint)
    • Line 327: warning: exported method Competition.GetEventUniqueAges should have comment or be unexported (golint)
    • Line 330: warning: exported method Competition.GetEventUniqueProficiencies should have comment or be unexported (golint)
    • Line 333: warning: exported method Competition.GetEventUniqueStyles should have comment or be unexported (golint)
    • Line 337: warning: exported type CompetitionOfficial should have comment or be unexported (golint)
    • Line 356: warning: exported type SearchCompetitionOfficialCriteria should have comment or be unexported (golint)
    • Line 363: warning: exported type ICompetitionOfficialRepository should have comment or be unexported (golint)
    • Line 371: warning: exported const COMPETITION_INVITATION_STATUS_ACCEPTED should have comment (or a comment on this block) or be unexported (golint)
    • Line 424: warning: exported function NewCompetitionOfficialInvitationService should have comment or be unexported (golint)
    • Line 437: warning: exported method CompetitionOfficialInvitationService.SearchCompetitionOfficialInvitation should have comment or be unexported (golint)
    • Line 441: warning: exported method CompetitionOfficialInvitationService.CreateCompetitionOfficialInvitation should have comment or be unexported (golint)
    • Line 491: warning: exported method CompetitionOfficialInvitationService.UpdateCompetitionOfficialInvitation should have comment or be unexported (golint)
    • Line 521: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 527: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • das/controller/reference/style.go
    • Line 11: warning: exported type StyleServer should have comment or be unexported (golint)
    • Line 15: warning: comment on exported method StyleServer.SearchStyleHandler should be of the form "SearchStyleHandler ..." (golint)
    • Line 26: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 42: warning: exported method StyleServer.CreateStyleHandler should have comment or be unexported (golint)
    • Line 43: warning: exported method StyleServer.UpdateStyleHandler should have comment or be unexported (golint)
    • Line 44: warning: exported method StyleServer.DeleteStyleHandler should have comment or be unexported (golint)
    • das/dataaccess/eventdal/meta.go
    • Line 12: warning: exported type PostgresEventMetaRepository should have comment or be unexported (golint)
    • Line 17: warning: exported method PostgresEventMetaRepository.GetEventUniqueFederations should have comment or be unexported (golint)
    • Line 52: warning: exported method PostgresEventMetaRepository.GetEventUniqueDivisions should have comment or be unexported (golint)
    • Line 84: warning: exported method PostgresEventMetaRepository.GetEventUniqueAges should have comment or be unexported (golint)
    • Line 119: warning: exported method PostgresEventMetaRepository.GetEventUniqueProficiencies should have comment or be unexported (golint)
    • Line 150: warning: exported method PostgresEventMetaRepository.GetEventUniqueStyles should have comment or be unexported (golint)
    • das/config/database/repository.go
    • Line 1: warning: package comment should be of the form "Package database ..." (golint)
    • Line 29: warning: exported var CityRepository should have comment or be unexported (golint)
    • Line 33: warning: exported var FederationRepository should have comment or be unexported (golint)
    • Line 37: warning: exported var DivisionRepository should have comment or be unexported (golint)
    • Line 41: warning: exported var AgeRepository should have comment or be unexported (golint)
    • Line 45: warning: exported var ProficiencyRepository should have comment or be unexported (golint)
    • Line 49: warning: exported var StyleRepository should have comment or be unexported (golint)
    • Line 53: warning: exported var DanceRepository should have comment or be unexported (golint)
    • Line 57: warning: exported var SchoolRepository should have comment or be unexported (golint)
    • Line 61: warning: exported var StudioRepository should have comment or be unexported (golint)
    • Line 67: warning: comment on exported var AccountRepository should be of the form "AccountRepository ..." (golint)
    • Line 72: warning: exported var AccountRoleRepository should have comment or be unexported (golint)
    • Line 76: warning: exported var UserPreferenceRepository should have comment or be unexported (golint)
    • Line 80: warning: exported var AccountTypeRepository should have comment or be unexported (golint)
    • Line 84: warning: exported var RoleApplicationRepository should have comment or be unexported (golint)
    • Line 88: warning: exported var RoleApplicationStatusRepository should have comment or be unexported (golint)
    • Line 94: warning: exported var PartnershipRepository should have comment or be unexported (golint)
    • Line 98: warning: exported var PartnershipRoleRepository should have comment or be unexported (golint)
    • Line 102: warning: exported var PartnershipRequestRepository should have comment or be unexported (golint)
    • Line 106: warning: exported var PartnershipRequestStatusRepository should have comment or be unexported (golint)
    • Line 110: warning: exported var PartnershipRequestBlacklistRepository should have comment or be unexported (golint)
    • Line 114: warning: exported var PartnershipRequestBlacklistReasonRepository should have comment or be unexported (golint)
    • Line 118: warning: exported var GenderRepository should have comment or be unexported (golint)
    • Line 122: warning: exported var OrganizerProvisionRepository should have comment or be unexported (golint)
    • Line 126: warning: exported var OrganizerProvisionHistoryRepository should have comment or be unexported (golint)
    • Line 130: warning: exported var CompetitionStatusRepository should have comment or be unexported (golint)
    • Line 134: warning: exported var CompetitionRepository should have comment or be unexported (golint)
    • Line 138: warning: exported var CompetitionOfficialRepository should have comment or be unexported (golint)
    • Line 142: warning: exported var CompetitionOfficialInvitationRepository should have comment or be unexported (golint)
    • Line 146: warning: exported var AthleteCompetitionEntryRepository should have comment or be unexported (golint)
    • Line 150: warning: exported var PartnershipCompetitionEntryRepository should have comment or be unexported (golint)
    • Line 154: warning: exported var EventRepository should have comment or be unexported (golint)
    • Line 158: warning: exported var EventMetaRepository should have comment or be unexported (golint)
    • Line 162: warning: exported var EventDanceRepository should have comment or be unexported (golint)
    • Line 166: warning: exported var CompetitionEventTemplateRepository should have comment or be unexported (golint)
    • Line 170: warning: exported var AthleteEventEntryRepository should have comment or be unexported (golint)
    • Line 174: warning: exported var PartnershipEventEntryRepository should have comment or be unexported (golint)
    • das/controller/athlete/registration.go
    • Line 34: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 40: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 53: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 65: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 108: warning: comment on exported method CompetitionRegistrationServer.GetAthleteRegistrationHandler should be of the form "GetAthleteRegistrationHandler ..." (golint)
    • das/businesslogic/accountrole.go
    • Line 18: warning: error var notAuthorizedToApproveUserRoleApplicationError should have name of the form errFoo (golint)
    • Line 95: warning: exported method RoleProvisionService.GetAllRoleApplicationStatuses should have comment or be unexported (golint)
    • Line 248: warning: exported function NewAccountRole should have comment or be unexported (golint)
    • das/controller/partnership/blacklist/blacklistreason.go
    • Line 11: warning: exported type PartnershipRequestBlacklistReasonServer should have comment or be unexported (golint)
    • Line 15: warning: comment on exported method PartnershipRequestBlacklistReasonServer.GetPartnershipBlacklistReasonHandler should be of the form "GetPartnershipBlacklistReasonHandler ..." (golint)
    • das/controller/reference/dance.go
    • Line 11: warning: exported type DanceServer should have comment or be unexported (golint)
    • Line 15: warning: comment on exported method DanceServer.SearchDanceHandler should be of the form "SearchDanceHandler ..." (golint)
    • Line 42: warning: exported method DanceServer.CreateDanceHandler should have comment or be unexported (golint)
    • Line 43: warning: exported method DanceServer.UpdateDanceHandler should have comment or be unexported (golint)
    • Line 44: warning: exported method DanceServer.DeleteDanceHandler should have comment or be unexported (golint)
    • das/controller/reference/federation.go
    • Line 12: warning: exported type FederationServer should have comment or be unexported (golint)
    • Line 16: warning: comment on exported method FederationServer.SearchFederationHandler should be of the form "SearchFederationHandler ..." (golint)
    • Line 43: warning: comment on exported method FederationServer.CreateFederationHandler should be of the form "CreateFederationHandler ..." (golint)
    • Line 46: warning: comment on exported method FederationServer.DeleteFederationHandler should be of the form "DeleteFederationHandler ..." (golint)
    • Line 49: warning: comment on exported method FederationServer.UpdateFederationHandler should be of the form "UpdateFederationHandler ..." (golint)
    • das/controller/organizer/entry.go
    • Line 5: warning: exported type OrganizerEntryServer should have comment or be unexported (golint)
    • Line 8: warning: exported method OrganizerEntryServer.CreateEntryHandler should have comment or be unexported (golint)
    • Line 12: warning: exported method OrganizerEntryServer.DeleteEntryHandler should have comment or be unexported (golint)
    • Line 16: warning: exported method OrganizerEntryServer.SearchEntryHandler should have comment or be unexported (golint)
    • Line 20: warning: exported method OrganizerEntryServer.UpdateEntryHandler should have comment or be unexported (golint)
    • das/viewmodel/event.go
    • Line 21: warning: exported method OrganizerSearchEventCriteria.ToBusinessModel should have comment or be unexported (golint)
    • Line 34: warning: exported type SearchCompetitionEventTemplateForm should have comment or be unexported (golint)
    • Line 87: warning: exported method EventDanceViewModel.PopulateViewModel should have comment or be unexported (golint)
    • Line 124: warning: exported type DeleteEventForm should have comment or be unexported (golint)
    • das/viewmodel/profile.go
    • Line 5: warning: comment on exported type SearchAthleteProfileForm should be of the form "SearchAthleteProfileForm ..." (with optional leading article) (golint)
    • Line 12: warning: exported type AthleteSummaryProfile should have comment or be unexported (golint)
    • Line 20: warning: exported type RatingProfile should have comment or be unexported (golint)
    • Line 32: warning: exported type AthleteDetailedProfile should have comment or be unexported (golint)
    • Line 41: warning: comment on exported type SearchPartnershipProfileForm should be of the form "SearchPartnershipProfileForm ..." (with optional leading article) (golint)
    • das/dataaccess/accountdal/account.go
    • Line 17: warning: exported const DasUserAccountTable should have comment (or a comment on this block) or be unexported (golint)
    • Line 34: warning: exported type PostgresAccountRepository should have comment or be unexported (golint)
    • Line 39: warning: exported method PostgresAccountRepository.CreateAccount should have comment or be unexported (golint)
    • Line 119: warning: exported method PostgresAccountRepository.SearchAccount should have comment or be unexported (golint)
    • Line 244: warning: exported method PostgresAccountRepository.DeleteAccount should have comment or be unexported (golint)
    • Line 256: warning: exported method PostgresAccountRepository.UpdateAccount should have comment or be unexported (golint)
    • das/businesslogic/blacklist.go
    • Line 7: warning: exported type PartnershipRequestBlacklistReason should have comment or be unexported (golint)
    • Line 15: warning: exported type IPartnershipRequestBlacklistReasonRepository should have comment or be unexported (golint)
    • Line 19: warning: exported type SearchPartnershipRequestBlacklistCriteria should have comment or be unexported (golint)
    • Line 26: warning: exported type PartnershipRequestBlacklistEntry should have comment or be unexported (golint)
    • das/auth/firebase/firebase.go
    • Line 79: warning: exported method FirebaseAuthenticationStrategy.GetUserByUID should have comment or be unexported (golint)
    • Line 87: warning: exported method FirebaseAuthenticationStrategy.GetUserByEmail should have comment or be unexported (golint)
    • das/businesslogic/preference.go
    • Line 16: warning: exported type SearchUserPreferenceCriteria should have comment or be unexported (golint)
    • Line 20: warning: exported type IUserPreferenceRepository should have comment or be unexported (golint)
    • das/businesslogic/provisionhistory.go
    • Line 5: warning: exported type OrganizerProvisionHistoryEntry should have comment or be unexported (golint)
    • Line 16: warning: exported type SearchOrganizerProvisionHistoryCriteria should have comment or be unexported (golint)
    • Line 33: warning: exported type IOrganizerProvisionHistoryRepository should have comment or be unexported (golint)
    • das/viewmodel/entry.go
    • Line 18: warning: comment on exported type AthleteCompetitionEntryViewModel should be of the form "AthleteCompetitionEntryViewModel ..." (with optional leading article) (golint)
    • Line 27: warning: exported type CoupleCompetitionEntryViewModel should have comment or be unexported (golint)
    • Line 33: warning: exported type AthleteEventEntryViewModel should have comment or be unexported (golint)
    • Line 38: warning: exported type CoupleEventEntryViewModel should have comment or be unexported (golint)
    • Line 46: warning: exported type CompetitionEntryListViewModel should have comment or be unexported (golint)
    • Line 52: warning: exported function AthleteCompetitionEntryToViewModel should have comment or be unexported (golint)
    • Line 62: warning: exported function CompetitionEntriesToViewModel should have comment or be unexported (golint)
    • Line 92: warning: exported type EventEntryListViewModel should have comment or be unexported (golint)
    • Line 98: warning: exported function EventEntriesToViewModel should have comment or be unexported (golint)
    • Line 107: warning: exported function CoupleEventEntryToViewModel should have comment or be unexported (golint)
    • das/controller/reference/city.go
    • Line 11: warning: exported type CityServer should have comment or be unexported (golint)
    • Line 15: warning: comment on exported method CityServer.CreateCityHandler should be of the form "CreateCityHandler ..." (golint)
    • Line 31: warning: comment on exported method CityServer.DeleteCityHandler should be of the form "DeleteCityHandler ..." (golint)
    • Line 56: warning: comment on exported method CityServer.UpdateCityHandler should be of the form "UpdateCityHandler ..." (golint)
    • Line 67: warning: comment on exported method CityServer.SearchCityHandler should be of the form "SearchCityHandler ..." (golint)
    • das/controller/reference/state.go
    • Line 12: warning: exported type StateServer should have comment or be unexported (golint)
    • Line 16: warning: comment on exported method StateServer.SearchStateHandler should be of the form "SearchStateHandler ..." (golint)
    • Line 39: warning: comment on exported method StateServer.CreateStateHandler should be of the form "CreateStateHandler ..." (golint)
    • Line 44: warning: comment on exported method StateServer.UpdateStateHandler should be of the form "UpdateStateHandler ..." (golint)
    • Line 49: warning: comment on exported method StateServer.DeleteStateHandler should be of the form "DeleteStateHandler ..." (golint)
    • das/dataaccess/eventdal/eventdance.go
    • Line 21: warning: exported const DAS_EVENT_DANCES_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 24: warning: exported method PostgresEventDanceRepository.SearchEventDance should have comment or be unexported (golint)
    • Line 68: warning: exported method PostgresEventDanceRepository.CreateEventDance should have comment or be unexported (golint)
    • Line 95: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 101: warning: exported method PostgresEventDanceRepository.DeleteEventDance should have comment or be unexported (golint)
    • Line 107: warning: exported method PostgresEventDanceRepository.UpdateEventDance should have comment or be unexported (golint)
    • das/dataaccess/entrydal/evententry.go
    • Line 28: warning: exported type PostgresAthleteEventEntryRepository should have comment or be unexported (golint)
    • Line 33: warning: exported method PostgresAthleteEventEntryRepository.CreateAthleteEventEntry should have comment or be unexported (golint)
    • Line 67: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 81: warning: exported method PostgresAthleteEventEntryRepository.DeleteAthleteEventEntry should have comment or be unexported (golint)
    • Line 89: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 95: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 102: warning: exported method PostgresAthleteEventEntryRepository.SearchAthleteEventEntry should have comment or be unexported (golint)
    • Line 186: warning: exported method PostgresAthleteEventEntryRepository.UpdateAthleteEventEntry should have comment or be unexported (golint)
    • Line 228: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/util/type.go
    • Line 3: warning: exported function InterfaceSliceToIntSlice should have comment or be unexported (golint)
    • Line 11: warning: exported function InterfaceMapToStringMap should have comment or be unexported (golint)
    • das/businesslogic/profile.go
    • Line 12: warning: exported type SearchAthleteProfileCriteria should have comment or be unexported (golint)
    • Line 17: warning: exported type IAthleteProfileRepository should have comment or be unexported (golint)
    • Line 21: warning: exported type AdjudicatorProfile should have comment or be unexported (golint)
    • Line 29: warning: exported type SearchAdjudicatorProfileCriteria should have comment or be unexported (golint)
    • Line 31: warning: exported type IAdjudicatorProfileRepository should have comment or be unexported (golint)
    • Line 37: warning: exported type OrganizerProfile should have comment or be unexported (golint)
    • Line 45: warning: exported type SearchOrganizerProfileCriteria should have comment or be unexported (golint)
    • Line 47: warning: exported type IOrganizerProfileRepository should have comment or be unexported (golint)
    • Line 53: warning: exported type ScrutineerProfile should have comment or be unexported (golint)
    • Line 61: warning: exported type SearchScrutineerProfileCriteria should have comment or be unexported (golint)
    • Line 63: warning: exported type IScrutineerProfileRepository should have comment or be unexported (golint)
    • Line 69: warning: exported type DeckCaptainProfile should have comment or be unexported (golint)
    • Line 77: warning: exported type SearchDeckCaptainProfileCriteria should have comment or be unexported (golint)
    • Line 79: warning: exported type IDeckCaptainProfileRepository should have comment or be unexported (golint)
    • Line 85: warning: exported type EmceeProfile should have comment or be unexported (golint)
    • Line 93: warning: exported type SearchEmceeProfileCriteria should have comment or be unexported (golint)
    • Line 95: warning: exported type IEmceeProfileRepository should have comment or be unexported (golint)
    • das/dataaccess/referencedal/division.go
    • Line 14: warning: exported const DAS_DIVISION_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 17: warning: exported type PostgresDivisionRepository should have comment or be unexported (golint)
    • Line 22: warning: exported method PostgresDivisionRepository.SearchDivision should have comment or be unexported (golint)
    • Line 67: warning: exported method PostgresDivisionRepository.CreateDivision should have comment or be unexported (golint)
    • Line 98: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 106: warning: exported method PostgresDivisionRepository.UpdateDivision should have comment or be unexported (golint)
    • Line 123: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 128: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 133: warning: exported method PostgresDivisionRepository.DeleteDivision should have comment or be unexported (golint)
    • Line 144: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/dataaccess/accountdal/accounttype.go
    • Line 14: warning: exported const DAS_ACCOUNT_TYPE_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 17: warning: exported type PostgresAccountTypeRepository should have comment or be unexported (golint)
    • Line 22: warning: exported method PostgresAccountTypeRepository.GetAccountTypes should have comment or be unexported (golint)
    • das/dataaccess/partnershipdal/partnershiprequest.go
    • Line 14: warning: exported const DAS_PARTNERSHIP_REQUEST_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 23: warning: exported type PostgresPartnershipRequestRepository should have comment or be unexported (golint)
    • Line 28: warning: exported method PostgresPartnershipRequestRepository.SearchPartnershipRequest should have comment or be unexported (golint)
    • Line 88: warning: exported method PostgresPartnershipRequestRepository.CreatePartnershipRequest should have comment or be unexported (golint)
    • Line 121: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 129: warning: exported method PostgresPartnershipRequestRepository.UpdatePartnershipRequest should have comment or be unexported (golint)
    • Line 144: warning: exported method PostgresPartnershipRequestRepository.DeletePartnershipRequest should have comment or be unexported (golint)
    • Line 151: warning: exported method PostgresPartnershipRequestRepository.GetReceivedRequests should have comment or be unexported (golint)
    • Line 191: warning: exported method PostgresPartnershipRequestRepository.GetSentRequests should have comment or be unexported (golint)
    • das/businesslogic/organizer.go
    • Line 24: warning: exported type UpdateOrganizerProvision should have comment or be unexported (golint)
    • Line 82: warning: comment on exported type OrganizerProvisionService should be of the form "OrganizerProvisionService ..." (with optional leading article) (golint)
    • Line 91: warning: exported function NewOrganizerProvisionService should have comment or be unexported (golint)
    • Line 104: warning: exported method OrganizerProvisionService.NewOrganizerProvision should have comment or be unexported (golint)
    • Line 117: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 146: warning: exported method OrganizerProvisionService.SearchOrganizerProvision should have comment or be unexported (golint)
    • Line 150: warning: exported method OrganizerProvisionService.UpdateOrganizerCompetitionProvision should have comment or be unexported (golint)
    • Line 185: warning: exported type OrganizerStripeSettings should have comment or be unexported (golint)
    • das/viewmodel/account.go
    • Line 8: warning: exported type AccountTypePublicView should have comment or be unexported (golint)
    • Line 30: warning: exported method SearchAccountDTO.Populate should have comment or be unexported (golint)
    • Line 38: warning: exported type AccountDTO should have comment or be unexported (golint)
    • Line 48: warning: exported method AccountDTO.Extract should have comment or be unexported (golint)
    • Line 68: warning: exported method CreateAccountDTO.ToAccountModel should have comment or be unexported (golint)
    • Line 88: warning: exported function AthleteToTinyViewModel should have comment or be unexported (golint)
    • Line 96: warning: exported type RoleApplicationStatusViewModel should have comment or be unexported (golint)
    • Line 101: warning: exported method RoleApplicationStatusViewModel.PopulateFromModel should have comment or be unexported (golint)
    • das/viewmodel/competitionstatus.go
    • Line 5: warning: exported type CompetitionStatus should have comment or be unexported (golint)
    • Line 10: warning: exported function CompetitionStatusDataModelToViewModel should have comment or be unexported (golint)
    • das/dataaccess/accountdal/roleapplicationstatus.go
    • Line 14: warning: exported const DAS_ACCOUNT_ROLE_APPLICATION_STATUS should have comment (or a comment on this block) or be unexported (golint)
    • Line 17: warning: exported type PostgresRoleApplicationStatusRepository should have comment or be unexported (golint)
    • Line 22: warning: exported method PostgresRoleApplicationStatusRepository.GetAllRoleApplicationStatus should have comment or be unexported (golint)
    • das/controller/partnership/request/status.go
    • Line 11: warning: exported type PartnershipRequestStatusServer should have comment or be unexported (golint)
    • Line 15: warning: comment on exported method PartnershipRequestStatusServer.GetPartnershipRequestStatusHandler should be of the form "GetPartnershipRequestStatusHandler ..." (golint)
    • das/dataaccess/eventdal/event_template.go
    • Line 18: warning: exported type PostgresCompetitionEventTemplateRepository should have comment or be unexported (golint)
    • Line 23: warning: exported method PostgresCompetitionEventTemplateRepository.SearchCompetitionEventTemplates should have comment or be unexported (golint)
    • das/dataaccess/eventdal/eventstatus.go
    • Line 13: warning: exported const DAS_EVENT_STATUS_TABLE should have comment or be unexported (golint)
    • Line 15: warning: exported type PostgresEventStatusRepository should have comment or be unexported (golint)
    • Line 20: warning: exported method PostgresEventStatusRepository.GetEventStatus should have comment or be unexported (golint)
    • das/controller/reference/division.go
    • Line 11: warning: exported type DivisionServer should have comment or be unexported (golint)
    • Line 15: warning: exported method DivisionServer.SearchDivisionHandler should have comment or be unexported (golint)
    • Line 25: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 41: warning: exported method DivisionServer.CreateDivisionHandler should have comment or be unexported (golint)
    • Line 42: warning: exported method DivisionServer.UpdateDivisionHandler should have comment or be unexported (golint)
    • Line 43: warning: exported method DivisionServer.DeleteDivisionHandler should have comment or be unexported (golint)
    • das/dataaccess/referencedal/dance.go
    • Line 14: warning: exported const DAS_DANCE_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 17: warning: exported type PostgresDanceRepository should have comment or be unexported (golint)
    • Line 22: warning: exported method PostgresDanceRepository.SearchDance should have comment or be unexported (golint)
    • Line 72: warning: exported method PostgresDanceRepository.CreateDance should have comment or be unexported (golint)
    • Line 101: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 109: warning: exported method PostgresDanceRepository.UpdateDance should have comment or be unexported (golint)
    • Line 125: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 134: warning: exported method PostgresDanceRepository.DeleteDance should have comment or be unexported (golint)
    • Line 144: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/dataaccess/provision/history.go
    • Line 14: warning: exported const DAS_ORGANIZER_PROVISION_HISTORY should have comment (or a comment on this block) or be unexported (golint)
    • Line 20: warning: exported type PostgresOrganizerProvisionHistoryRepository should have comment or be unexported (golint)
    • Line 25: warning: exported method PostgresOrganizerProvisionHistoryRepository.CreateOrganizerProvisionHistory should have comment or be unexported (golint)
    • Line 62: warning: exported method PostgresOrganizerProvisionHistoryRepository.SearchOrganizerProvisionHistory should have comment or be unexported (golint)
    • das/controller/entry.go
    • Line 11: warning: exported type EntryServer should have comment or be unexported (golint)
    • Line 47: warning: comment on exported method EntryServer.SearchEventEntryHandler should be of the form "SearchEventEntryHandler ..." (golint)
    • Line 85: warning: comment on exported method EntryServer.SearchAthleteEntryHandler should be of the form "SearchAthleteEntryHandler ..." (golint)
    • das/controller/organizer/provision.go
    • Line 13: warning: exported type OrganizerProvisionServer should have comment or be unexported (golint)
    • Line 19: warning: comment on exported method OrganizerProvisionServer.GetOrganizerProvisionSummaryHandler should be of the form "GetOrganizerProvisionSummaryHandler ..." (golint)
    • Line 39: warning: exported type OrganizerProvisionHistoryEntryViewModel should have comment or be unexported (golint)
    • Line 45: warning: exported type OrganizerProvisionHistoryServer should have comment or be unexported (golint)
    • Line 51: warning: comment on exported method OrganizerProvisionHistoryServer.GetOrganizerProvisionHistoryHandler should be of the form "GetOrganizerProvisionHistoryHandler ..." (golint)
    • das/controller/account/role.go
    • Line 15: warning: exported type RoleApplicationServer should have comment or be unexported (golint)
    • Line 20: warning: exported function NewRoleApplicationServer should have comment or be unexported (golint)
    • Line 81: warning: exported method RoleApplicationServer.GetAllApplicationStatus should have comment or be unexported (golint)
    • Line 233: warning: comment on exported method RoleServer.GetAccountRolesHandler should be of the form "GetAccountRolesHandler ..." (golint)
    • das/viewmodel/role.go
    • Line 5: warning: exported type AccountRoleDTO should have comment or be unexported (golint)
    • Line 10: warning: exported function AccountRoleToAccountRoleDTO should have comment or be unexported (golint)
    • das/dataaccess/referencedal/federation.go
    • Line 14: warning: exported const DAS_FEDERATION_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 18: warning: exported type PostgresFederationRepository should have comment or be unexported (golint)
    • Line 23: warning: exported method PostgresFederationRepository.CreateFederation should have comment or be unexported (golint)
    • Line 54: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 63: warning: exported method PostgresFederationRepository.SearchFederation should have comment or be unexported (golint)
    • Line 114: warning: exported method PostgresFederationRepository.DeleteFederation should have comment or be unexported (golint)
    • Line 123: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 130: warning: exported method PostgresFederationRepository.UpdateFederation should have comment or be unexported (golint)
    • Line 146: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 151: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • das/businesslogic/registration.go
    • Line 53: warning: exported function NewCompetitionRegistrationService should have comment or be unexported (golint)
    • Line 123: warning: exported type SearchEntryCriteria should have comment or be unexported (golint)
    • Line 216: warning: exported method CompetitionRegistrationService.SearchCompetitionEntries should have comment or be unexported (golint)
    • Line 238: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 391: warning: comment on exported method CompetitionRegistrationService.CreateAndUpdatePartnershipEventEntries should be of the form "CreateAndUpdatePartnershipEventEntries ..." (golint)
    • Line 435: warning: exported method CompetitionRegistrationService.SearchPartnershipEventEntries should have comment or be unexported (golint)
    • das/controller/reference/proficiency.go
    • Line 11: warning: exported type ProficiencyServer should have comment or be unexported (golint)
    • Line 15: warning: comment on exported method ProficiencyServer.SearchProficiencyHandler should be of the form "SearchProficiencyHandler ..." (golint)
    • Line 26: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 36: warning: comment on exported method ProficiencyServer.CreateProficiencyHandler should be of the form "CreateProficiencyHandler ..." (golint)
    • Line 39: warning: comment on exported method ProficiencyServer.DeleteProficiencyHandler should be of the form "DeleteProficiencyHandler ..." (golint)
    • Line 42: warning: comment on exported method ProficiencyServer.UpdateProficiencyHandler should be of the form "UpdateProficiencyHandler ..." (golint)
    • das/dataaccess/referencedal/country.go
    • Line 15: warning: exported const DAS_COUNTRY_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 51: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 69: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 94: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 100: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • das/controller/reference/age.go
    • Line 11: warning: exported type AgeServer should have comment or be unexported (golint)
    • Line 38: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 49: warning: exported method AgeServer.CreateAgeHandler should have comment or be unexported (golint)
    • Line 53: warning: exported method AgeServer.UpdateAgeHandler should have comment or be unexported (golint)
    • Line 57: warning: exported method AgeServer.DeleteAgeHandler should have comment or be unexported (golint)
    • das/dataaccess/provision/provision.go
    • Line 16: warning: exported const DAS_ORGANIZER_PROVISION should have comment (or a comment on this block) or be unexported (golint)
    • Line 22: warning: exported type PostgresOrganizerProvisionRepository should have comment or be unexported (golint)
    • Line 27: warning: exported method PostgresOrganizerProvisionRepository.CreateOrganizerProvision should have comment or be unexported (golint)
    • Line 139: warning: exported method PostgresOrganizerProvisionRepository.DeleteOrganizerProvision should have comment or be unexported (golint)
    • das/controller/partnership/partnership.go
    • Line 51: warning: comment on exported method PartnershipServer.UpdatePartnershipHandler should be of the form "UpdatePartnershipHandler ..." (golint)
    • Line 83: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/controller/admin/user.go
    • Line 12: warning: exported type AdminUserManagementServer should have comment or be unexported (golint)
    • Line 17: warning: exported function NewAdminUserManagementServer should have comment or be unexported (golint)
    • Line 24: warning: comment on exported method AdminUserManagementServer.SearchUserHandler should be of the form "SearchUserHandler ..." (golint)
    • das/core/skating/judgemarks.go
    • Line 9: warning: exported var DUPLICATE_PLACEMENT_ERROR should have comment or be unexported (golint)
    • Line 10: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 13: warning: exported var INVALID_PLACEMENT_ERROR should have comment or be unexported (golint)
    • Line 14: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 17: warning: exported var PLACEMENT_OUTOFRANGE_ERROR should have comment or be unexported (golint)
    • Line 18: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 21: warning: exported type JudgeMarks should have comment or be unexported (golint)
    • Line 27: warning: exported function NewJudgeMarks should have comment or be unexported (golint)
    • Line 35: warning: exported method JudgeMarks.AddCallback should have comment or be unexported (golint)
    • Line 71: warning: exported method JudgeMarks.GetPlacements should have comment or be unexported (golint)
    • Line 79: warning: exported method JudgeMarks.GetCouples should have comment or be unexported (golint)
    • das/dataaccess/referencedal/city.go
    • Line 49: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 73: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 97: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/dataaccess/referencedal/studio.go
    • Line 14: warning: exported const DAS_STUDIO_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 17: warning: exported type PostgresStudioRepository should have comment or be unexported (golint)
    • Line 22: warning: exported method PostgresStudioRepository.SearchStudio should have comment or be unexported (golint)
    • Line 77: warning: exported method PostgresStudioRepository.CreateStudio should have comment or be unexported (golint)
    • Line 106: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 114: warning: exported method PostgresStudioRepository.UpdateStudio should have comment or be unexported (golint)
    • Line 129: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 134: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 139: warning: exported method PostgresStudioRepository.DeleteStudio should have comment or be unexported (golint)
    • Line 147: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/dataaccess/referencedal/age.go
    • Line 15: warning: exported const DAS_AGE_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 21: warning: exported type PostgresAgeRepository should have comment or be unexported (golint)
    • Line 26: warning: exported method PostgresAgeRepository.CreateAge should have comment or be unexported (golint)
    • Line 56: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 64: warning: exported method PostgresAgeRepository.DeleteAge should have comment or be unexported (golint)
    • Line 73: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 80: warning: exported method PostgresAgeRepository.SearchAge should have comment or be unexported (golint)
    • Line 137: warning: exported method PostgresAgeRepository.UpdateAge should have comment or be unexported (golint)
    • Line 155: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/dataaccess/referencedal/proficiency.go
    • Line 15: warning: exported const DAS_PROFICIENCY_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 18: warning: exported type PostgresProficiencyRepository should have comment or be unexported (golint)
    • Line 23: warning: exported method PostgresProficiencyRepository.CreateProficiency should have comment or be unexported (golint)
    • Line 50: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 58: warning: exported method PostgresProficiencyRepository.UpdateProficiency should have comment or be unexported (golint)
    • Line 72: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 80: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 85: warning: exported method PostgresProficiencyRepository.DeleteProficiency should have comment or be unexported (golint)
    • Line 96: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 105: warning: exported method PostgresProficiencyRepository.SearchProficiency should have comment or be unexported (golint)
    • das/businesslogic/evententry.go
    • Line 41: warning: exported type IAdjudicatorEventEntryRepository should have comment or be unexported (golint)
    • Line 61: warning: exported type AthleteEventEntry should have comment or be unexported (golint)
    • Line 76: warning: exported type SearchAthleteEventEntryCriteria should have comment or be unexported (golint)
    • Line 83: warning: exported type IAthleteEventEntryRepository should have comment or be unexported (golint)
    • Line 94: warning: exported method AthleteEventEntryService.CreateAthleteEventEntry should have comment or be unexported (golint)
    • Line 98: warning: exported method AthleteEventEntryService.DeleteAthleteEventEntry should have comment or be unexported (golint)
    • Line 102: warning: exported method AthleteEventEntryService.SearchAthleteEventEntry should have comment or be unexported (golint)
    • Line 106: warning: exported method AthleteEventEntryService.UpdateAthleteEventEntry should have comment or be unexported (golint)
    • Line 143: warning: exported type PartnershipEventEntryService should have comment or be unexported (golint)
    • Line 157: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • das/controller/reference/country.go
    • Line 52: warning: comment on exported method CountryServer.DeleteCountryHandler should be of the form "DeleteCountryHandler ..." (golint)
    • Line 76: warning: comment on exported method CountryServer.UpdateCountryHandler should be of the form "UpdateCountryHandler ..." (golint)
    • das/dataaccess/organizer/competition_official_invitation.go
    • Line 23: warning: exported type PostgresCompetitionOfficialInvitationRepository should have comment or be unexported (golint)
    • Line 28: warning: exported method PostgresCompetitionOfficialInvitationRepository.CreateCompetitionOfficialInvitationRepository should have comment or be unexported (golint)
    • Line 84: warning: exported method PostgresCompetitionOfficialInvitationRepository.DeleteCompetitionOfficialInvitationRepository should have comment or be unexported (golint)
    • Line 90: warning: exported method PostgresCompetitionOfficialInvitationRepository.SearchCompetitionOfficialInvitationRepository should have comment or be unexported (golint)
    • Line 156: warning: exported method PostgresCompetitionOfficialInvitationRepository.UpdateCompetitionOfficialInvitationRepository should have comment or be unexported (golint)
    • das/dataaccess/entrydal/competitionentry.go
    • Line 74: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 175: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 201: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 208: warning: exported method PostgresAthleteCompetitionEntryRepository.NextAvailableLeadTag should have comment or be unexported (golint)
    • Line 225: warning: exported method PostgresAthleteCompetitionEntryRepository.GetEntriesByCompetition should have comment or be unexported (golint)
    • Line 300: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 326: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/dataaccess/accountdal/accountrole.go
    • Line 14: warning: exported const DAS_ACCOUNT_ROLE_TABLE should have comment or be unexported (golint)
    • Line 16: warning: exported type PostgresAccountRoleRepository should have comment or be unexported (golint)
    • Line 21: warning: exported method PostgresAccountRoleRepository.CreateAccountRole should have comment or be unexported (golint)
    • Line 71: warning: exported method PostgresAccountRoleRepository.SearchAccountRole should have comment or be unexported (golint)
    • das/dataaccess/partnershipdal/partnership.go
    • Line 16: warning: exported const DasPartnershipTable should have comment (or a comment on this block) or be unexported (golint)
    • Line 153: warning: exported method PostgresPartnershipRepository.DeletePartnership should have comment or be unexported (golint)
    • Line 160: warning: exported method PostgresPartnershipRepository.UpdatePartnership should have comment or be unexported (golint)
    • Line 170: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/dataaccess/entrydal/leadtag.go
    • Line 20: warning: exported type PostgresCompetitionLeadTagRepository should have comment or be unexported (golint)
    • Line 51: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 75: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 166: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/businesslogic/event.go
    • Line 147: warning: exported method Event.AddEventDance should have comment or be unexported (golint)
    • Line 153: warning: exported method Event.GetEventDances should have comment or be unexported (golint)
    • Line 214: warning: exported type SearchEventDanceCriteria should have comment or be unexported (golint)
    • Line 220: warning: exported type IEventDanceRepository should have comment or be unexported (golint)
    • Line 227: warning: exported function NewEventDance should have comment or be unexported (golint)
    • Line 255: warning: exported function NewOrganizerEventService should have comment or be unexported (golint)
    • Line 310: warning: exported method OrganizerEventService.GenerateEventsFromTemplate should have comment or be unexported (golint)
    • Line 324: warning: exported method OrganizerEventService.SearchCompetitionEventTemplate should have comment or be unexported (golint)
    • Line 328: warning: exported method OrganizerEventService.CreateEvent should have comment or be unexported (golint)
    • Line 331: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 374: warning: exported method OrganizerEventService.SearchEvents should have comment or be unexported (golint)
    • Line 378: warning: exported method OrganizerEventService.ApplyCollegiateTemplate should have comment or be unexported (golint)
    • Line 382: warning: exported method OrganizerEventService.ApplyNDCATemplate should have comment or be unexported (golint)
    • Line 386: warning: exported method OrganizerEventService.ValidateEvent should have comment or be unexported (golint)
    • Line 393: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 405: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 417: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 429: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 436: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 448: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 487: warning: exported method OrganizerEventService.DeleteEvent should have comment or be unexported (golint)
    • Line 493: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 520: warning: exported method CompetitionEventFactory.GenerateEvent should have comment or be unexported (golint)
    • Line 528: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 543: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 558: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 573: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 587: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 609: warning: exported type EventTemplate should have comment or be unexported (golint)
    • Line 618: warning: exported type CompetitionEventTemplate should have comment or be unexported (golint)
    • Line 627: warning: exported type SearchCompetitionEventTemplateCriteria should have comment or be unexported (golint)
    • Line 633: warning: exported type ICompetitionEventTemplateRepository should have comment or be unexported (golint)
    • das/dataaccess/partnershipdal/blacklistreason.go
    • Line 13: warning: exported type PostgresPartnershipRequestBlacklistReasonRepository should have comment or be unexported (golint)
    • Line 18: warning: exported method PostgresPartnershipRequestBlacklistReasonRepository.GetPartnershipRequestBlacklistReasons should have comment or be unexported (golint)
    • das/controller/util/json.go
    • Line 10: warning: exported function DasParseHtmlInputDateTime should have comment or be unexported (golint)
    • Line 16: warning: exported function DasParseHtmlInputDate should have comment or be unexported (golint)
    • das/controller/competition/event.go
    • Line 11: warning: exported type EventViewModel should have comment or be unexported (golint)
    • Line 19: warning: comment on exported method PublicCompetitionServer.GetEventHandler should be of the form "GetEventHandler ..." (golint)
    • Line 43: warning: exported type SearchCompetitiveBallroomEventViewModel should have comment or be unexported (golint)
    • Line 53: warning: exported type CompetitiveBallroomEventViewModel should have comment or be unexported (golint)
    • das/dataaccess/referencedal/state.go
    • Line 14: warning: exported const DAS_STATE_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 17: warning: exported type PostgresStateRepository should have comment or be unexported (golint)
    • Line 22: warning: exported method PostgresStateRepository.SearchState should have comment or be unexported (golint)
    • Line 75: warning: exported method PostgresStateRepository.CreateState should have comment or be unexported (golint)
    • Line 102: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 110: warning: exported method PostgresStateRepository.UpdateState should have comment or be unexported (golint)
    • Line 125: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 132: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 137: warning: exported method PostgresStateRepository.DeleteState should have comment or be unexported (golint)
    • Line 145: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/dataaccess/referencedal/style.go
    • Line 14: warning: exported const DAS_STYLE_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 24: warning: exported method PostgresStyleRepository.CreateStyle should have comment or be unexported (golint)
    • Line 49: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 57: warning: exported method PostgresStyleRepository.DeleteStyle should have comment or be unexported (golint)
    • Line 68: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 75: warning: exported method PostgresStyleRepository.SearchStyle should have comment or be unexported (golint)
    • Line 118: warning: exported method PostgresStyleRepository.UpdateStyle should have comment or be unexported (golint)
    • Line 131: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 140: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • das/dataaccess/accountdal/profile.go
    • Line 12: warning: exported type PostgresAthleteProfileRepository should have comment or be unexported (golint)
    • Line 17: warning: exported method PostgresAthleteProfileRepository.GetAthleteProfile should have comment or be unexported (golint)
    • das/controller/organizer/event.go
    • Line 131: warning: comment on exported method OrganizerEventServer.CreateCompetitionEventTemplateHanlder should be of the form "CreateCompetitionEventTemplateHanlder ..." (golint)
    • das/dataaccess/referencedal/school.go
    • Line 14: warning: exported const DAS_SCHOOL_TABLE should have comment (or a comment on this block) or be unexported (golint)
    • Line 17: warning: exported type PostgresSchoolRepository should have comment or be unexported (golint)
    • Line 22: warning: exported method PostgresSchoolRepository.CreateSchool should have comment or be unexported (golint)
    • Line 47: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 55: warning: exported method PostgresSchoolRepository.UpdateSchool should have comment or be unexported (golint)
    • Line 68: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 75: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 80: warning: exported method PostgresSchoolRepository.DeleteSchool should have comment or be unexported (golint)
    • Line 91: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 100: warning: exported method PostgresSchoolRepository.SearchSchool should have comment or be unexported (golint)
    • das/dataaccess/accountdal/preference.go
    • Line 50: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 123: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • das/controller/partnership/blacklist/blacklist.go
    • Line 12: warning: exported type PartnershipBlacklistViewModel should have comment or be unexported (golint)
    • Line 17: warning: exported type PartnershipRequestBlacklistServer should have comment or be unexported (golint)
    • Line 23: warning: comment on exported method PartnershipRequestBlacklistServer.GetBlacklistedAccountHandler should be of the form "GetBlacklistedAccountHandler ..." (golint)
    • Line 45: warning: comment on exported method PartnershipRequestBlacklistServer.CreatePartnershipRequestBlacklistReportHandler should be of the form "CreatePartnershipRequestBlacklistReportHandler ..." (golint)
    • das/dataaccess/partnershipdal/blacklist.go
    • Line 14: warning: exported const DasPartnershipRequestBlacklistTable should have comment (or a comment on this block) or be unexported (golint)
    • Line 22: warning: exported type PostgresPartnershipRequestBlacklistRepository should have comment or be unexported (golint)
    • Line 27: warning: exported method PostgresPartnershipRequestBlacklistRepository.SearchPartnershipRequestBlacklist should have comment or be unexported (golint)
    • Line 80: warning: exported method PostgresPartnershipRequestBlacklistRepository.CreatePartnershipRequestBlacklist should have comment or be unexported (golint)
    • Line 111: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 118: warning: exported method PostgresPartnershipRequestBlacklistRepository.DeletePartnershipRequestBlacklist should have comment or be unexported (golint)
    • Line 129: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 149: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 154: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • das/env/env.go
    • Line 4: warning: exported const VarDatabaseDriver should have comment (or a comment on this block) or be unexported (golint)
    • Line 13: warning: exported const LogLevelInfo should have comment (or a comment on this block) or be unexported (golint)
    • Line 19: warning: exported var DatabaseDriver should have comment or be unexported (golint)
    • das/businesslogic/competitionrules.go
    • Line 5: warning: exported type IRule should have comment or be unexported (golint)
    • Line 9: warning: exported type GenderRule should have comment or be unexported (golint)
    • Line 15: warning: exported method GenderRule.Apply should have comment or be unexported (golint)
    • das/config/routes/organizer/event.go
    • Line 68: warning: exported var OrganizerEventManagementControllerGroup should have comment or be unexported (golint)
    • Line 97: warning: exported var OrganizerCompetitionEventTemplateControllerGroup should have comment or be unexported (golint)
    • das/viewmodel/preference.go
    • Line 5: warning: exported type UserPreferenceViewModel should have comment or be unexported (golint)
    • Line 9: warning: exported function UserPreferenceDataModelToViewModel should have comment or be unexported (golint)
    • das/controller/reference/school.go
    • Line 11: warning: exported type SchoolServer should have comment or be unexported (golint)
    • Line 15: warning: comment on exported method SchoolServer.SearchSchoolHandler should be of the form "SearchSchoolHandler ..." (golint)
    • Line 27: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 38: warning: comment on exported method SchoolServer.CreateSchoolHandler should be of the form "CreateSchoolHandler ..." (golint)
    • Line 41: warning: comment on exported method SchoolServer.UpdateSchoolHandler should be of the form "UpdateSchoolHandler ..." (golint)
    • Line 44: warning: comment on exported method SchoolServer.DeleteSchoolHandler should be of the form "DeleteSchoolHandler ..." (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign93%

IneffAssign detects ineffectual assignments in Go code.


misspell96%

Misspell Finds commonly misspelled English words