Preparing report...

Report for github.com/ExperienceOne/apikit

A    Great!    Found 65 issues across 90 files

Tweet

gofmt95%

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!


gocyclo78%

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.

    • apikit/tests/api/server.go
    • Line 1873: warning: cyclomatic complexity 35 of function (*VisAdminServer).Start() is high (> 15) (gocyclo)
    • Line 1209: warning: cyclomatic complexity 18 of function (*VisAdminServer).CodeHandler() is high (> 15) (gocyclo)
    • Line 1089: warning: cyclomatic complexity 17 of function (*VisAdminServer).ListModelsHandler() is high (> 15) (gocyclo)
    • Line 1342: warning: cyclomatic complexity 16 of function (*VisAdminServer).CreateCustomerSessionHandler() is high (> 15) (gocyclo)
    • apikit/tests/api/client.go
    • Line 1690: warning: cyclomatic complexity 26 of function (*visAdminClient).CreateCustomerSession() is high (> 15) (gocyclo)
    • Line 1520: warning: cyclomatic complexity 24 of function (*visAdminClient).Code() is high (> 15) (gocyclo)
    • Line 1282: warning: cyclomatic complexity 24 of function (*visAdminClient).GetBookings() is high (> 15) (gocyclo)
    • Line 2046: warning: cyclomatic complexity 22 of function (*visAdminClient).GenericFileDownload() is high (> 15) (gocyclo)
    • Line 828: warning: cyclomatic complexity 21 of function (*visAdminClient).GetUserInfo() is high (> 15) (gocyclo)
    • Line 1183: warning: cyclomatic complexity 21 of function (*visAdminClient).CreateOrUpdateUser() is high (> 15) (gocyclo)
    • Line 1899: warning: cyclomatic complexity 20 of function (*visAdminClient).ListElements() is high (> 15) (gocyclo)
    • Line 1447: warning: cyclomatic complexity 20 of function (*visAdminClient).GetClasses() is high (> 15) (gocyclo)
    • Line 905: warning: cyclomatic complexity 19 of function (*visAdminClient).CreateSession() is high (> 15) (gocyclo)
    • Line 1107: warning: cyclomatic complexity 19 of function (*visAdminClient).GetUser() is high (> 15) (gocyclo)
    • Line 1378: warning: cyclomatic complexity 19 of function (*visAdminClient).ListModels() is high (> 15) (gocyclo)
    • Line 564: warning: cyclomatic complexity 19 of function (*visAdminClient).CreateOrUpdateViewsSet() is high (> 15) (gocyclo)
    • Line 220: warning: cyclomatic complexity 19 of function (*visAdminClient).CreateOrUpdateClient() is high (> 15) (gocyclo)
    • Line 426: warning: cyclomatic complexity 18 of function (*visAdminClient).GetViewsSet() is high (> 15) (gocyclo)
    • Line 2239: warning: cyclomatic complexity 18 of function (*visAdminClient).PostUpload() is high (> 15) (gocyclo)
    • Line 152: warning: cyclomatic complexity 17 of function (*visAdminClient).GetClient() is high (> 15) (gocyclo)
    • Line 24: warning: cyclomatic complexity 17 of function (*visAdminClient).GetClients() is high (> 15) (gocyclo)
    • Line 1038: warning: cyclomatic complexity 16 of function (*visAdminClient).DeleteUser() is high (> 15) (gocyclo)
    • Line 2128: warning: cyclomatic complexity 16 of function (*visAdminClient).GetRental() is high (> 15) (gocyclo)
    • apikit/generator/types/types.go
    • Line 424: warning: cyclomatic complexity 33 of function (*Type).WriteTo() is high (> 15) (gocyclo)
    • Line 251: warning: cyclomatic complexity 19 of function FromSchema() is high (> 15) (gocyclo)
    • Line 32: warning: cyclomatic complexity 16 of function convertSimpleType() is high (> 15) (gocyclo)
    • apikit/middleware/reflect.go
    • Line 23: warning: cyclomatic complexity 30 of function clearValueFieldByType() is high (> 15) (gocyclo)
    • Line 124: warning: cyclomatic complexity 20 of function clearValueFieldByName() is high (> 15) (gocyclo)
    • apikit/example/framework.go
    • Line 116: warning: cyclomatic complexity 21 of function stringToPrimitive() is high (> 15) (gocyclo)
    • Line 252: warning: cyclomatic complexity 18 of function JSON() is high (> 15) (gocyclo)

golint32%

Golint is a linter for Go source code.

    • apikit/tests/mock/client.go
    • Line 9: warning: exported function NewVisAdminClientMock should have comment or be unexported (golint)
    • Line 13: warning: exported method VisAdminClientMock.GetClients should have comment or be unexported (golint)
    • Line 29: warning: exported method VisAdminClientMock.DeleteClient should have comment or be unexported (golint)
    • Line 45: warning: exported method VisAdminClientMock.GetClient should have comment or be unexported (golint)
    • Line 61: warning: exported method VisAdminClientMock.CreateOrUpdateClient should have comment or be unexported (golint)
    • Line 85: warning: exported method VisAdminClientMock.GetViewsSets should have comment or be unexported (golint)
    • Line 97: warning: exported method VisAdminClientMock.DeleteViewsSet should have comment or be unexported (golint)
    • Line 113: warning: exported method VisAdminClientMock.GetViewsSet should have comment or be unexported (golint)
    • Line 129: warning: comment on exported method VisAdminClientMock.ActivateViewsSet should be of the form "ActivateViewsSet ..." (golint)
    • Line 146: warning: exported method VisAdminClientMock.CreateOrUpdateViewsSet should have comment or be unexported (golint)
    • Line 170: warning: exported method VisAdminClientMock.ShowVehicleInView should have comment or be unexported (golint)
    • Line 186: warning: comment on exported method VisAdminClientMock.GetPermissions should be of the form "GetPermissions ..." (golint)
    • Line 202: warning: exported method VisAdminClientMock.DestroySession should have comment or be unexported (golint)
    • Line 214: warning: exported method VisAdminClientMock.GetUserInfo should have comment or be unexported (golint)
    • Line 230: warning: exported method VisAdminClientMock.CreateSession should have comment or be unexported (golint)
    • Line 246: warning: exported method VisAdminClientMock.GetUsers should have comment or be unexported (golint)
    • Line 258: warning: exported method VisAdminClientMock.DeleteUser should have comment or be unexported (golint)
    • Line 274: warning: exported method VisAdminClientMock.GetUser should have comment or be unexported (golint)
    • Line 290: warning: exported method VisAdminClientMock.CreateOrUpdateUser should have comment or be unexported (golint)
    • Line 314: warning: comment on exported method VisAdminClientMock.GetBooking should be of the form "GetBooking ..." (golint)
    • Line 339: warning: comment on exported method VisAdminClientMock.GetBookings should be of the form "GetBookings ..." (golint)
    • Line 364: warning: exported method VisAdminClientMock.ListModels should have comment or be unexported (golint)
    • Line 378: warning: exported method VisAdminClientMock.GetClasses should have comment or be unexported (golint)
    • Line 390: warning: exported method VisAdminClientMock.Code should have comment or be unexported (golint)
    • Line 414: warning: comment on exported method VisAdminClientMock.DeleteCustomerSession should be of the form "DeleteCustomerSession ..." (golint)
    • Line 433: warning: comment on exported method VisAdminClientMock.CreateCustomerSession should be of the form "CreateCustomerSession ..." (golint)
    • Line 460: warning: comment on exported method VisAdminClientMock.DownloadNestedFile should be of the form "DownloadNestedFile ..." (golint)
    • Line 471: warning: comment on exported method VisAdminClientMock.DownloadImage should be of the form "DownloadImage ..." (golint)
    • Line 484: warning: exported method VisAdminClientMock.ListElements should have comment or be unexported (golint)
    • Line 496: warning: comment on exported method VisAdminClientMock.DownloadFile should be of the form "DownloadFile ..." (golint)
    • Line 505: warning: comment on exported method VisAdminClientMock.GenericFileDownload should be of the form "GenericFileDownload ..." (golint)
    • Line 518: warning: comment on exported method VisAdminClientMock.GetRental should be of the form "GetRental ..." (golint)
    • Line 531: warning: exported method VisAdminClientMock.PostUpload should have comment or be unexported (golint)
    • Line 543: warning: exported type VisAdminClientMock should have comment or be unexported (golint)
    • apikit/tests/api/server_handler.go
    • Line 33: warning: exported type ReadCloserBuffer should have comment or be unexported (golint)
    • Line 37: warning: exported method ReadCloserBuffer.Close should have comment or be unexported (golint)
    • Line 44: warning: exported function CreateSession should have comment or be unexported (golint)
    • Line 60: warning: exported function PostUpload should have comment or be unexported (golint)
    • Line 79: warning: exported function GetUserInfo should have comment or be unexported (golint)
    • Line 104: warning: exported function IsContextPopluated should have comment or be unexported (golint)
    • Line 117: warning: exported function GetBrands should have comment or be unexported (golint)
    • Line 126: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 134: warning: exported function GetUsers should have comment or be unexported (golint)
    • Line 138: warning: exported function GetClient should have comment or be unexported (golint)
    • Line 145: warning: exported function DownloadImage should have comment or be unexported (golint)
    • Line 173: warning: exported function DownloadFile should have comment or be unexported (golint)
    • Line 177: warning: exported const JSONBody should have comment or be unexported (golint)
    • Line 206: warning: exported function GenericFileDownload should have comment or be unexported (golint)
    • Line 218: warning: exported function CreateOrUpdateUser should have comment or be unexported (golint)
    • Line 222: warning: exported function GetPermissions should have comment or be unexported (golint)
    • Line 226: warning: exported function GetBookings should have comment or be unexported (golint)
    • Line 242: warning: exported function Code should have comment or be unexported (golint)
    • Line 255: warning: exported function CreateCustomerSession should have comment or be unexported (golint)
    • Line 269: warning: exported function GetClasses should have comment or be unexported (golint)
    • Line 276: warning: exported function ListElement should have comment or be unexported (golint)
    • Line 282: warning: exported function GetBooking should have comment or be unexported (golint)
    • Line 286: warning: exported function GetRental should have comment or be unexported (golint)
    • Line 292: warning: exported function RouterPanicMiddleware should have comment or be unexported (golint)
    • Line 320: warning: exported function RouterPopulateContextMiddleware should have comment or be unexported (golint)
    • Line 323: warning: should not use basic type string as key in context.WithValue (golint)
    • Line 329: warning: exported function HandlerMiddleware should have comment or be unexported (golint)
    • Line 336: warning: exported function NestedFileDownload should have comment or be unexported (golint)
    • Line 349: warning: exported function GetShoes should have comment or be unexported (golint)
    • Line 354: warning: exported function FileUpload should have comment or be unexported (golint)
    • apikit/generator/openapi/openapi.go
    • Line 14: warning: exported type Spec should have comment or be unexported (golint)
    • Line 19: warning: exported function NewOpenApiSpecFromFile should have comment or be unexported (golint)
    • Line 30: warning: exported method Spec.Validate should have comment or be unexported (golint)
    • Line 37: warning: exported method Spec.Info should have comment or be unexported (golint)
    • Line 41: warning: comment on exported method Spec.GlobalConsumes should be of the form "GlobalConsumes ..." (golint)
    • Line 47: warning: comment on exported method Spec.GlobalProduces should be of the form "GlobalProduces ..." (golint)
    • Line 53: warning: exported method Spec.Definitions should have comment or be unexported (golint)
    • Line 57: warning: exported method Spec.Parameters should have comment or be unexported (golint)
    • Line 61: warning: exported method Spec.Paths should have comment or be unexported (golint)
    • Line 66: warning: exported method Spec.SecurityScheme should have comment or be unexported (golint)
    • Line 71: warning: exported method Spec.GlobalSecurities should have comment or be unexported (golint)
    • Line 76: warning: exported method Spec.MarshalJSON should have comment or be unexported (golint)
    • apikit/generator/go_generator.go
    • Line 20: warning: exported type GoGenerator should have comment or be unexported (golint)
    • Line 35: warning: exported const ContentTypeApplicationJson should have comment (or a comment on this block) or be unexported (golint)
    • Line 53: warning: exported var ContentTypesForFiles should have comment or be unexported (golint)
    • Line 108: warning: exported type Generator should have comment or be unexported (golint)
    • Line 112: warning: exported function NewGoGenerator should have comment or be unexported (golint)
    • Line 117: warning: exported type Library should have comment or be unexported (golint)
    • Line 133: warning: exported method GoGenerator.WalkOperations should have comment or be unexported (golint)
    • Line 193: warning: exported method GoGenerator.ConvertMapToSecuritySchemeSlice should have comment or be unexported (golint)
    • Line 204: warning: exported type ParametersBucket should have comment or be unexported (golint)
    • Line 217: warning: exported function NewParameterBucket should have comment or be unexported (golint)
    • Line 236: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 244: warning: exported method GoGenerator.PopulateParametersBucket should have comment or be unexported (golint)
    • apikit/example/client.go
    • Line 366: warning: exported type TodoServiceClient should have comment or be unexported (golint)
    • Line 375: warning: exported function NewTodoServiceClient should have comment or be unexported (golint)
    • apikit/generator/api_generator.go
    • Line 61: warning: exported type ApiGenerator should have comment or be unexported (golint)
    • Line 68: warning: exported function NewGoAPIGenerator should have comment or be unexported (golint)
    • Line 78: warning: exported method ApiGenerator.Generate should have comment or be unexported (golint)
    • Line 126: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 151: warning: exported type ApiMockGenerator should have comment or be unexported (golint)
    • Line 155: warning: exported function NewGoAPIMockGenerator should have comment or be unexported (golint)
    • Line 166: warning: exported method ApiMockGenerator.Generate should have comment or be unexported (golint)
    • Line 171: warning: exported type ServerApiGenerator should have comment or be unexported (golint)
    • Line 175: warning: exported function NewGoServerAPIGenerator should have comment or be unexported (golint)
    • Line 185: warning: exported method ServerApiGenerator.Generate should have comment or be unexported (golint)
    • Line 190: warning: exported type ServerApiMockGenerator should have comment or be unexported (golint)
    • Line 194: warning: exported function NewGoServerAPIMockGenerator should have comment or be unexported (golint)
    • Line 204: warning: exported method ServerApiMockGenerator.Generate should have comment or be unexported (golint)
    • Line 209: warning: exported type ClientApiGenerator should have comment or be unexported (golint)
    • Line 213: warning: exported function NewGoClientAPIGenerator should have comment or be unexported (golint)
    • Line 223: warning: exported method ClientApiGenerator.Generate should have comment or be unexported (golint)
    • Line 228: warning: exported type ClientApiMockGenerator should have comment or be unexported (golint)
    • Line 232: warning: exported function NewGoClientAPIMockGenerator should have comment or be unexported (golint)
    • Line 242: warning: exported method ClientApiMockGenerator.Generate should have comment or be unexported (golint)
    • apikit/example/service.go
    • Line 10: warning: exported type Service should have comment or be unexported (golint)
    • Line 16: warning: exported function NewService should have comment or be unexported (golint)
    • Line 52: warning: exported method Service.ListTodos should have comment or be unexported (golint)
    • Line 56: warning: exported method Service.PostTodo should have comment or be unexported (golint)
    • Line 72: warning: exported method Service.DeleteTodos should have comment or be unexported (golint)
    • Line 79: warning: exported method Service.GetTodo should have comment or be unexported (golint)
    • Line 90: warning: exported method Service.PatchTodo should have comment or be unexported (golint)
    • Line 116: warning: exported method Service.DeleteTodo should have comment or be unexported (golint)
    • apikit/tests/api/clientutil.go
    • Line 10: warning: exported type BadRequestHTTPTransport should have comment or be unexported (golint)
    • Line 15: warning: exported method BadRequestHTTPTransport.RoundTrip should have comment or be unexported (golint)
    • apikit/tests/api/framework.go
    • Line 27: warning: exported type HooksClient should have comment or be unexported (golint)
    • Line 31: warning: exported function DevHook should have comment or be unexported (golint)
    • Line 62: warning: error var EmptyString should have name of the form ErrFoo (golint)
    • Line 62: warning: exported var EmptyString should have comment or be unexported (golint)
    • Line 248: warning: error var NullError should have name of the form ErrFoo (golint)
    • Line 248: warning: exported var NullError should have comment or be unexported (golint)
    • Line 249: warning: error var TypeError should have name of the form ErrFoo (golint)
    • Line 252: warning: exported function JSON should have comment or be unexported (golint)
    • Line 277: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 485: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 491: warning: exported type ValidationErrorsObject should have comment or be unexported (golint)
    • Line 496: warning: exported type ValidationErrorObject should have comment or be unexported (golint)
    • Line 502: warning: exported function NewValidation should have comment or be unexported (golint)
    • Line 508: warning: exported type Validator should have comment or be unexported (golint)
    • Line 512: warning: exported method Validator.ValidateRequest should have comment or be unexported (golint)
    • Line 545: warning: exported var GitCommit should have comment or be unexported (golint)
    • Line 551: warning: exported type VersionInfo should have comment or be unexported (golint)
    • Line 559: warning: exported function ApikitVersion should have comment or be unexported (golint)
    • Line 569: warning: exported method VersionInfo.PrintTable should have comment or be unexported (golint)
    • Line 600: warning: exported type Opts should have comment or be unexported (golint)
    • Line 618: warning: exported type NewRequest should have comment or be unexported (golint)
    • Line 648: warning: exported const ContentTypeTextPlain should have comment (or a comment on this block) or be unexported (golint)
    • Line 693: warning: error var newRequestObjectIsNilError should have name of the form errFoo (golint)
    • Line 718: warning: exported type MimeFile should have comment or be unexported (golint)
    • Line 744: warning: exported const RequestHeaderKey should have comment (or a comment on this block) or be unexported (golint)
    • Line 747: warning: exported type HttpContext should have comment or be unexported (golint)
    • Line 751: warning: exported function CreateHttpContext should have comment or be unexported (golint)
    • Line 810: warning: exported function NewHTTPStatusCodeError should have comment or be unexported (golint)
    • Line 822: warning: exported type HttpJsonError should have comment or be unexported (golint)
    • Line 831: warning: exported method HttpJsonError.StatusCode should have comment or be unexported (golint)
    • Line 839: warning: exported type PrometheusHandler should have comment or be unexported (golint)
    • Line 844: warning: exported function NewPrometheusHandler should have comment or be unexported (golint)
    • Line 880: warning: exported method PrometheusHandler.InitMetric should have comment or be unexported (golint)
    • Line 886: warning: exported method PrometheusHandler.HandleRequest should have comment or be unexported (golint)
    • Line 893: warning: exported type Timeouts should have comment or be unexported (golint)
    • Line 900: warning: exported type ServerOpts should have comment or be unexported (golint)
    • Line 907: warning: exported type Middleware should have comment or be unexported (golint)
    • Line 912: warning: exported type RouteDescription should have comment or be unexported (golint)
    • Line 919: warning: exported type Server should have comment or be unexported (golint)
    • Line 931: warning: exported type ErrorHandler should have comment or be unexported (golint)
    • Line 1029: warning: exported method Server.Start should have comment or be unexported (golint)
    • Line 1053: warning: exported method Server.Stop should have comment or be unexported (golint)
    • apikit/example/server.go
    • Line 10: warning: exported type DeleteTodosHandler should have comment or be unexported (golint)
    • Line 17: warning: exported method TodoServiceServer.SetDeleteTodosHandler should have comment or be unexported (golint)
    • Line 21: warning: exported method TodoServiceServer.DeleteTodosHandler 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 (golint)
    • Line 48: warning: exported type ListTodosHandler should have comment or be unexported (golint)
    • Line 55: warning: exported method TodoServiceServer.SetListTodosHandler should have comment or be unexported (golint)
    • Line 59: warning: exported method TodoServiceServer.ListTodosHandler should have comment or be unexported (golint)
    • Line 63: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 86: warning: exported type PostTodoHandler should have comment or be unexported (golint)
    • Line 93: warning: exported method TodoServiceServer.SetPostTodoHandler should have comment or be unexported (golint)
    • Line 97: warning: exported method TodoServiceServer.PostTodoHandler 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 (golint)
    • Line 137: warning: exported type DeleteTodoHandler should have comment or be unexported (golint)
    • Line 144: warning: exported method TodoServiceServer.SetDeleteTodoHandler should have comment or be unexported (golint)
    • Line 148: warning: exported method TodoServiceServer.DeleteTodoHandler should have comment or be unexported (golint)
    • Line 152: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 179: warning: exported type GetTodoHandler should have comment or be unexported (golint)
    • Line 186: warning: exported method TodoServiceServer.SetGetTodoHandler should have comment or be unexported (golint)
    • Line 190: warning: exported method TodoServiceServer.GetTodoHandler should have comment or be unexported (golint)
    • Line 194: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 221: warning: exported type PatchTodoHandler should have comment or be unexported (golint)
    • Line 228: warning: exported method TodoServiceServer.SetPatchTodoHandler should have comment or be unexported (golint)
    • Line 232: warning: exported method TodoServiceServer.PatchTodoHandler should have comment or be unexported (golint)
    • Line 236: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 276: warning: exported type TodoServiceServer should have comment or be unexported (golint)
    • Line 289: warning: exported function NewTodoServiceServer should have comment or be unexported (golint)
    • Line 296: warning: exported method TodoServiceServer.Start should have comment or be unexported (golint)
    • apikit/framework/generator.go
    • Line 24: warning: exported type Generator should have comment or be unexported (golint)
    • Line 29: warning: exported type SourceCodeFile should have comment or be unexported (golint)
    • Line 34: warning: comment on exported function FromDirectory should be of the form "FromDirectory ..." (golint)
    • Line 138: warning: comment on exported function FromBytes should be of the form "FromBytes ..." (golint)
    • Line 150: warning: comment on exported method Generator.Bytes should be of the form "Bytes ..." (golint)
    • Line 166: warning: comment on exported method Generator.Append should be of the form "Append ..." (golint)
    • Line 187: warning: comment on exported method Generator.RenamePackage should be of the form "RenamePackage ..." (golint)
    • Line 193: warning: comment on exported method Generator.RenameTypes should be of the form "RenameTypes ..." (golint)
    • Line 227: warning: comment on exported method Generator.MakePrivate should be of the form "MakePrivate ..." (golint)
    • apikit/cmd/apikit/main.go
    • Line 67: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 74: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 80: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 180: warning: exported function GenerateAction should have comment or be unexported (golint)
    • Line 201: warning: exported function GenerateHandlersAction should have comment or be unexported (golint)
    • Line 222: warning: exported function GenerateServiceAction should have comment or be unexported (golint)
    • Line 243: warning: exported function ValidateAction should have comment or be unexported (golint)
    • apikit/example/framework.go
    • Line 27: warning: exported type HooksClient should have comment or be unexported (golint)
    • Line 31: warning: exported function DevHook should have comment or be unexported (golint)
    • Line 62: warning: error var EmptyString should have name of the form ErrFoo (golint)
    • Line 62: warning: exported var EmptyString should have comment or be unexported (golint)
    • Line 248: warning: error var NullError should have name of the form ErrFoo (golint)
    • Line 248: warning: exported var NullError should have comment or be unexported (golint)
    • Line 249: warning: error var TypeError should have name of the form ErrFoo (golint)
    • Line 252: warning: exported function JSON should have comment or be unexported (golint)
    • Line 277: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 485: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 491: warning: exported type ValidationErrorsObject should have comment or be unexported (golint)
    • Line 496: warning: exported type ValidationErrorObject should have comment or be unexported (golint)
    • Line 502: warning: exported function NewValidation should have comment or be unexported (golint)
    • Line 508: warning: exported type Validator should have comment or be unexported (golint)
    • Line 512: warning: exported method Validator.ValidateRequest should have comment or be unexported (golint)
    • Line 545: warning: exported const GitCommit should have comment (or a comment on this block) or be unexported (golint)
    • Line 551: warning: exported type VersionInfo should have comment or be unexported (golint)
    • Line 559: warning: exported function ApikitVersion should have comment or be unexported (golint)
    • Line 569: warning: exported method VersionInfo.PrintTable should have comment or be unexported (golint)
    • Line 600: warning: exported type Opts should have comment or be unexported (golint)
    • Line 618: warning: exported type NewRequest should have comment or be unexported (golint)
    • Line 648: warning: exported const ContentTypeTextPlain should have comment (or a comment on this block) or be unexported (golint)
    • Line 693: warning: error var newRequestObjectIsNilError should have name of the form errFoo (golint)
    • Line 718: warning: exported type MimeFile should have comment or be unexported (golint)
    • Line 744: warning: exported const RequestHeaderKey should have comment (or a comment on this block) or be unexported (golint)
    • Line 747: warning: exported type HttpContext should have comment or be unexported (golint)
    • Line 751: warning: exported function CreateHttpContext should have comment or be unexported (golint)
    • Line 810: warning: exported function NewHTTPStatusCodeError should have comment or be unexported (golint)
    • Line 822: warning: exported type HttpJsonError should have comment or be unexported (golint)
    • Line 831: warning: exported method HttpJsonError.StatusCode should have comment or be unexported (golint)
    • Line 839: warning: exported type PrometheusHandler should have comment or be unexported (golint)
    • Line 844: warning: exported function NewPrometheusHandler should have comment or be unexported (golint)
    • Line 880: warning: exported method PrometheusHandler.InitMetric should have comment or be unexported (golint)
    • Line 886: warning: exported method PrometheusHandler.HandleRequest should have comment or be unexported (golint)
    • Line 893: warning: exported type ServerOpts should have comment or be unexported (golint)
    • Line 899: warning: exported type Middleware should have comment or be unexported (golint)
    • Line 904: warning: exported type RouteDescription should have comment or be unexported (golint)
    • Line 911: warning: exported type Server should have comment or be unexported (golint)
    • Line 922: warning: exported type ErrorHandler should have comment or be unexported (golint)
    • Line 1015: warning: exported method Server.Start should have comment or be unexported (golint)
    • Line 1035: warning: exported method Server.Stop should have comment or be unexported (golint)
    • apikit/example/types.go
    • Line 7: warning: exported type Todo should have comment or be unexported (golint)
    • Line 15: warning: exported type TodoList should have comment or be unexported (golint)
    • Line 16: warning: exported type Object1 should have comment or be unexported (golint)
    • Line 22: warning: exported type Object2 should have comment or be unexported (golint)
    • Line 26: warning: exported type DeleteTodosRequest should have comment or be unexported (golint)
    • Line 28: warning: exported type DeleteTodosResponse should have comment or be unexported (golint)
    • Line 34: warning: comment on exported type DeleteTodos204Response should be of the form "DeleteTodos204Response ..." (with optional leading article) (golint)
    • Line 39: warning: exported method DeleteTodos204Response.StatusCode should have comment or be unexported (golint)
    • Line 49: warning: exported type ListTodosRequest should have comment or be unexported (golint)
    • Line 51: warning: exported type ListTodosResponse should have comment or be unexported (golint)
    • Line 57: warning: comment on exported type ListTodos200Response should be of the form "ListTodos200Response ..." (with optional leading article) (golint)
    • Line 64: warning: exported method ListTodos200Response.StatusCode should have comment or be unexported (golint)
    • Line 75: warning: exported type Object3 should have comment or be unexported (golint)
    • Line 79: warning: exported type PostTodoRequest should have comment or be unexported (golint)
    • Line 83: warning: exported type PostTodoResponse should have comment or be unexported (golint)
    • Line 89: warning: comment on exported type PostTodo201Response should be of the form "PostTodo201Response ..." (with optional leading article) (golint)
    • Line 96: warning: exported method PostTodo201Response.StatusCode should have comment or be unexported (golint)
    • Line 107: warning: exported type DeleteTodoRequest should have comment or be unexported (golint)
    • Line 111: warning: exported type DeleteTodoResponse should have comment or be unexported (golint)
    • Line 117: warning: comment on exported type DeleteTodo204Response should be of the form "DeleteTodo204Response ..." (with optional leading article) (golint)
    • Line 122: warning: exported method DeleteTodo204Response.StatusCode should have comment or be unexported (golint)
    • Line 132: warning: comment on exported type DeleteTodo404Response should be of the form "DeleteTodo404Response ..." (with optional leading article) (golint)
    • Line 137: warning: exported method DeleteTodo404Response.StatusCode should have comment or be unexported (golint)
    • Line 147: warning: exported type GetTodoRequest should have comment or be unexported (golint)
    • Line 151: warning: exported type GetTodoResponse should have comment or be unexported (golint)
    • Line 157: warning: comment on exported type GetTodo200Response should be of the form "GetTodo200Response ..." (with optional leading article) (golint)
    • Line 164: warning: exported method GetTodo200Response.StatusCode should have comment or be unexported (golint)
    • Line 175: warning: comment on exported type GetTodo404Response should be of the form "GetTodo404Response ..." (with optional leading article) (golint)
    • Line 180: warning: exported method GetTodo404Response.StatusCode should have comment or be unexported (golint)
    • Line 190: warning: exported type Object4 should have comment or be unexported (golint)
    • Line 196: warning: exported type PatchTodoRequest should have comment or be unexported (golint)
    • Line 201: warning: exported type PatchTodoResponse should have comment or be unexported (golint)
    • Line 207: warning: comment on exported type PatchTodo200Response should be of the form "PatchTodo200Response ..." (with optional leading article) (golint)
    • Line 214: warning: exported method PatchTodo200Response.StatusCode should have comment or be unexported (golint)
    • Line 225: warning: comment on exported type PatchTodo404Response should be of the form "PatchTodo404Response ..." (with optional leading article) (golint)
    • Line 230: warning: exported method PatchTodo404Response.StatusCode should have comment or be unexported (golint)
    • apikit/generator/xregex/xregex.go
    • Line 4: warning: exported const UUIDGROUP should have comment (or a comment on this block) or be unexported (golint)
    • Line 11: warning: comment on exported var UUID should be of the form "UUID ..." (golint)
    • Line 13: warning: comment on exported var URL should be of the form "URL ..." (golint)
    • apikit/generator/types/types.go
    • Line 22: warning: exported const BooleanType should have comment (or a comment on this block) or be unexported (golint)
    • Line 55: warning: exported type Composit should have comment or be unexported (golint)
    • Line 58: warning: exported const Simple should have comment (or a comment on this block) or be unexported (golint)
    • Line 66: warning: exported type Element should have comment or be unexported (golint)
    • Line 72: warning: exported type Type should have comment or be unexported (golint)
    • Line 83: warning: exported function New should have comment or be unexported (golint)
    • Line 95: warning: exported function NewObject should have comment or be unexported (golint)
    • Line 100: warning: exported function NewArray should have comment or be unexported (golint)
    • Line 117: warning: exported function NewMap should have comment or be unexported (golint)
    • Line 134: warning: exported function NewEnum should have comment or be unexported (golint)
    • Line 172: warning: exported function NewFile should have comment or be unexported (golint)
    • Line 206: warning: exported function FromSimpleSchema should have comment or be unexported (golint)
    • Line 244: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 251: warning: exported function FromSchema should have comment or be unexported (golint)
    • Line 331: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 357: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 402: warning: exported method Type.AddElement should have comment or be unexported (golint)
    • Line 407: warning: exported method Type.GetValidators should have comment or be unexported (golint)
    • Line 424: warning: exported method Type.WriteTo should have comment or be unexported (golint)
    • apikit/generator/mock_generator.go
    • Line 18: warning: exported type GoClientMockGenerator should have comment or be unexported (golint)
    • Line 22: warning: exported function NewGoClientMockGenerator should have comment or be unexported (golint)
    • Line 29: warning: exported method GoClientMockGenerator.Generate should have comment or be unexported (golint)
    • apikit/internal/framework/xhttperror/httperror.go
    • Line 8: warning: comment on exported type XHTTPError should be of the form "XHTTPError ..." (with optional leading article) (golint)
    • Line 15: warning: exported type HttpCodeError should have comment or be unexported (golint)
    • Line 34: warning: exported type HttpJsonError should have comment or be unexported (golint)
    • apikit/internal/framework/xserver/server.go
    • Line 19: warning: exported type Timeouts should have comment or be unexported (golint)
    • Line 28: warning: exported type ServerOpts should have comment or be unexported (golint)
    • Line 35: warning: exported type Middleware should have comment or be unexported (golint)
    • Line 40: warning: exported type RouteDescription should have comment or be unexported (golint)
    • Line 47: warning: exported type Server should have comment or be unexported (golint)
    • Line 59: warning: exported type ErrorHandler should have comment or be unexported (golint)
    • Line 160: warning: exported method Server.Start should have comment or be unexported (golint)
    • Line 184: warning: exported method Server.Stop should have comment or be unexported (golint)
    • apikit/generator/types_generator.go
    • Line 19: warning: exported type ValidatorMap should have comment or be unexported (golint)
    • Line 21: warning: exported function NewValidatorMap should have comment or be unexported (golint)
    • Line 26: warning: exported method ValidatorMap.Add should have comment or be unexported (golint)
    • Line 31: warning: exported method ValidatorMap.AddAll should have comment or be unexported (golint)
    • Line 43: warning: exported function NewGoTypesGenerator should have comment or be unexported (golint)
    • Line 245: 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 313: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • apikit/internal/framework/validation/validaton.go
    • Line 9: warning: exported type ValidationErrorsObject should have comment or be unexported (golint)
    • Line 14: warning: exported type ValidationErrorObject should have comment or be unexported (golint)
    • Line 20: warning: exported function NewValidation should have comment or be unexported (golint)
    • Line 26: warning: exported type Validator should have comment or be unexported (golint)
    • Line 30: warning: comment on exported method Validator.ValidateRequest should be of the form "ValidateRequest ..." (golint)
    • apikit/internal/framework/unmarshal/json.go
    • Line 14: warning: error var NullError should have name of the form ErrFoo (golint)
    • Line 14: warning: exported var NullError should have comment or be unexported (golint)
    • Line 15: warning: error var TypeError should have name of the form ErrFoo (golint)
    • Line 18: warning: exported function JSON should have comment or be unexported (golint)
    • Line 43: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 251: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • apikit/generator/file/file.go
    • Line 7: warning: exported type File should have comment or be unexported (golint)
    • Line 12: warning: exported function NewFile should have comment or be unexported (golint)
    • Line 20: warning: exported method File.HasType should have comment or be unexported (golint)
    • Line 25: warning: exported method File.AddType should have comment or be unexported (golint)
    • apikit/generator/openapi/security.go
    • Line 3: warning: exported type SecurityType should have comment or be unexported (golint)
    • Line 10: warning: exported const Basic should have comment (or a comment on this block) or be unexported (golint)
    • Line 14: warning: exported const BasicAuthHeaderName should have comment or be unexported (golint)
    • apikit/middleware/httplog.go
    • Line 72: warning: exported type LogResponseStatusWriter should have comment or be unexported (golint)
    • Line 77: warning: exported function NewLogResponseStatusWriter should have comment or be unexported (golint)
    • Line 82: warning: exported method LogResponseStatusWriter.WriteHeader should have comment or be unexported (golint)
    • Line 96: warning: exported function NewLogResponseWriter should have comment or be unexported (golint)
    • apikit/tests/api/client.go
    • Line 2319: warning: exported type VisAdminClient should have comment or be unexported (golint)
    • Line 2356: warning: exported function NewVisAdminClient should have comment or be unexported (golint)
    • apikit/tests/api/types.go
    • Line 10: warning: exported type Address should have comment or be unexported (golint)
    • Line 19: warning: exported type BasicTypes should have comment or be unexported (golint)
    • Line 28: warning: exported type Booking should have comment or be unexported (golint)
    • Line 32: warning: exported type Object1 should have comment or be unexported (golint)
    • Line 48: warning: exported type Client should have comment or be unexported (golint)
    • Line 55: warning: comment on exported type DriveConcept should be of the form "DriveConcept ..." (with optional leading article) (golint)
    • Line 59: warning: exported const DriveConceptCOMBUSTOR should have comment (or a comment on this block) or be unexported (golint)
    • Line 66: warning: exported type EmptySlice should have comment or be unexported (golint)
    • Line 70: warning: exported type Link should have comment or be unexported (golint)
    • Line 74: warning: exported type Links should have comment or be unexported (golint)
    • Line 78: warning: exported type Model should have comment or be unexported (golint)
    • Line 84: warning: exported type NestedFileStructure should have comment or be unexported (golint)
    • Line 88: warning: exported type Price should have comment or be unexported (golint)
    • Line 93: warning: exported type Rental should have comment or be unexported (golint)
    • Line 111: warning: exported type Session should have comment or be unexported (golint)
    • Line 116: warning: exported type Shoe should have comment or be unexported (golint)
    • Line 123: warning: exported type Shoes should have comment or be unexported (golint)
    • Line 129: warning: exported type ShoesEmbedded should have comment or be unexported (golint)
    • Line 133: warning: exported type TechnicalInformation should have comment or be unexported (golint)
    • Line 137: warning: exported type User should have comment or be unexported (golint)
    • Line 146: warning: exported type ValidationError should have comment or be unexported (golint)
    • Line 152: warning: exported type ValidationErrors should have comment or be unexported (golint)
    • Line 157: warning: exported type ViewsSet should have comment or be unexported (golint)
    • Line 163: warning: comment on exported type ComponentTypes should be of the form "ComponentTypes ..." (with optional leading article) (golint)
    • Line 168: warning: exported const ComponentTypesWHEELS should have comment (or a comment on this block) or be unexported (golint)
    • Line 181: warning: comment on exported type ProductGroup should be of the form "ProductGroup ..." (with optional leading article) (golint)
    • Line 185: warning: exported const ProductGroupPKW should have comment (or a comment on this block) or be unexported (golint)
    • Line 193: warning: exported type GetClientsRequest should have comment or be unexported (golint)
    • Line 197: warning: exported type GetClientsResponse should have comment or be unexported (golint)
    • Line 203: warning: comment on exported type GetClients200Response should be of the form "GetClients200Response ..." (with optional leading article) (golint)
    • Line 210: warning: exported method GetClients200Response.StatusCode should have comment or be unexported (golint)
    • Line 221: warning: comment on exported type GetClients204Response should be of the form "GetClients204Response ..." (with optional leading article) (golint)
    • Line 226: warning: exported method GetClients204Response.StatusCode should have comment or be unexported (golint)
    • Line 236: warning: comment on exported type GetClients403Response should be of the form "GetClients403Response ..." (with optional leading article) (golint)
    • Line 241: warning: exported method GetClients403Response.StatusCode should have comment or be unexported (golint)
    • Line 251: warning: exported type DeleteClientRequest should have comment or be unexported (golint)
    • Line 256: warning: exported type DeleteClientResponse should have comment or be unexported (golint)
    • Line 262: warning: comment on exported type DeleteClient200Response should be of the form "DeleteClient200Response ..." (with optional leading article) (golint)
    • Line 267: warning: exported method DeleteClient200Response.StatusCode should have comment or be unexported (golint)
    • Line 277: warning: comment on exported type DeleteClient403Response should be of the form "DeleteClient403Response ..." (with optional leading article) (golint)
    • Line 282: warning: exported method DeleteClient403Response.StatusCode should have comment or be unexported (golint)
    • Line 292: warning: comment on exported type DeleteClient404Response should be of the form "DeleteClient404Response ..." (with optional leading article) (golint)
    • Line 297: warning: exported method DeleteClient404Response.StatusCode should have comment or be unexported (golint)
    • Line 307: warning: exported type GetClientRequest should have comment or be unexported (golint)
    • Line 312: warning: exported type GetClientResponse should have comment or be unexported (golint)
    • Line 318: warning: comment on exported type GetClient200Response should be of the form "GetClient200Response ..." (with optional leading article) (golint)
    • Line 325: warning: exported method GetClient200Response.StatusCode should have comment or be unexported (golint)
    • Line 336: warning: comment on exported type GetClient403Response should be of the form "GetClient403Response ..." (with optional leading article) (golint)
    • Line 341: warning: exported method GetClient403Response.StatusCode should have comment or be unexported (golint)
    • Line 351: warning: comment on exported type GetClient404Response should be of the form "GetClient404Response ..." (with optional leading article) (golint)
    • Line 356: warning: exported method GetClient404Response.StatusCode should have comment or be unexported (golint)
    • Line 366: warning: exported type CreateOrUpdateClientRequest should have comment or be unexported (golint)
    • Line 372: warning: exported type CreateOrUpdateClientResponse should have comment or be unexported (golint)
    • Line 378: warning: comment on exported type CreateOrUpdateClient200Response should be of the form "CreateOrUpdateClient200Response ..." (with optional leading article) (golint)
    • Line 383: warning: exported method CreateOrUpdateClient200Response.StatusCode should have comment or be unexported (golint)
    • Line 393: warning: comment on exported type CreateOrUpdateClient201Response should be of the form "CreateOrUpdateClient201Response ..." (with optional leading article) (golint)
    • Line 398: warning: exported method CreateOrUpdateClient201Response.StatusCode should have comment or be unexported (golint)
    • Line 408: warning: comment on exported type CreateOrUpdateClient400Response should be of the form "CreateOrUpdateClient400Response ..." (with optional leading article) (golint)
    • Line 413: warning: exported method CreateOrUpdateClient400Response.StatusCode should have comment or be unexported (golint)
    • Line 423: warning: comment on exported type CreateOrUpdateClient403Response should be of the form "CreateOrUpdateClient403Response ..." (with optional leading article) (golint)
    • Line 428: warning: exported method CreateOrUpdateClient403Response.StatusCode should have comment or be unexported (golint)
    • Line 438: warning: comment on exported type CreateOrUpdateClient405Response should be of the form "CreateOrUpdateClient405Response ..." (with optional leading article) (golint)
    • Line 443: warning: exported method CreateOrUpdateClient405Response.StatusCode should have comment or be unexported (golint)
    • Line 453: warning: exported type GetViewsSetsRequest should have comment or be unexported (golint)
    • Line 458: warning: exported type GetViewsSetsResponse should have comment or be unexported (golint)
    • Line 464: warning: comment on exported type GetViewsSets200Response should be of the form "GetViewsSets200Response ..." (with optional leading article) (golint)
    • Line 471: warning: exported method GetViewsSets200Response.StatusCode should have comment or be unexported (golint)
    • Line 482: warning: comment on exported type GetViewsSets403Response should be of the form "GetViewsSets403Response ..." (with optional leading article) (golint)
    • Line 487: warning: exported method GetViewsSets403Response.StatusCode should have comment or be unexported (golint)
    • Line 497: warning: exported type DeleteViewsSetRequest should have comment or be unexported (golint)
    • Line 503: warning: exported type DeleteViewsSetResponse should have comment or be unexported (golint)
    • Line 509: warning: comment on exported type DeleteViewsSet200Response should be of the form "DeleteViewsSet200Response ..." (with optional leading article) (golint)
    • Line 514: warning: exported method DeleteViewsSet200Response.StatusCode should have comment or be unexported (golint)
    • Line 524: warning: comment on exported type DeleteViewsSet403Response should be of the form "DeleteViewsSet403Response ..." (with optional leading article) (golint)
    • Line 529: warning: exported method DeleteViewsSet403Response.StatusCode should have comment or be unexported (golint)
    • Line 539: warning: comment on exported type DeleteViewsSet404Response should be of the form "DeleteViewsSet404Response ..." (with optional leading article) (golint)
    • Line 544: warning: exported method DeleteViewsSet404Response.StatusCode should have comment or be unexported (golint)
    • Line 554: warning: exported type GetViewsSetRequest should have comment or be unexported (golint)
    • Line 561: warning: exported type GetViewsSetResponse should have comment or be unexported (golint)
    • Line 567: warning: comment on exported type GetViewsSet200Response should be of the form "GetViewsSet200Response ..." (with optional leading article) (golint)
    • Line 574: warning: exported method GetViewsSet200Response.StatusCode should have comment or be unexported (golint)
    • Line 585: warning: comment on exported type GetViewsSet403Response should be of the form "GetViewsSet403Response ..." (with optional leading article) (golint)
    • Line 590: warning: exported method GetViewsSet403Response.StatusCode should have comment or be unexported (golint)
    • Line 600: warning: comment on exported type GetViewsSet404Response should be of the form "GetViewsSet404Response ..." (with optional leading article) (golint)
    • Line 605: warning: exported method GetViewsSet404Response.StatusCode should have comment or be unexported (golint)
    • Line 615: warning: exported type ActivateViewsSetRequest should have comment or be unexported (golint)
    • Line 621: warning: exported type ActivateViewsSetResponse should have comment or be unexported (golint)
    • Line 627: warning: comment on exported type ActivateViewsSet200Response should be of the form "ActivateViewsSet200Response ..." (with optional leading article) (golint)
    • Line 632: warning: exported method ActivateViewsSet200Response.StatusCode should have comment or be unexported (golint)
    • Line 642: warning: comment on exported type ActivateViewsSet403Response should be of the form "ActivateViewsSet403Response ..." (with optional leading article) (golint)
    • Line 647: warning: exported method ActivateViewsSet403Response.StatusCode should have comment or be unexported (golint)
    • Line 657: warning: comment on exported type ActivateViewsSet404Response should be of the form "ActivateViewsSet404Response ..." (with optional leading article) (golint)
    • Line 662: warning: exported method ActivateViewsSet404Response.StatusCode should have comment or be unexported (golint)
    • Line 672: warning: exported type CreateOrUpdateViewsSetRequest should have comment or be unexported (golint)
    • Line 679: warning: exported type CreateOrUpdateViewsSetResponse should have comment or be unexported (golint)
    • Line 685: warning: comment on exported type CreateOrUpdateViewsSet200Response should be of the form "CreateOrUpdateViewsSet200Response ..." (with optional leading article) (golint)
    • Line 690: warning: exported method CreateOrUpdateViewsSet200Response.StatusCode should have comment or be unexported (golint)
    • Line 700: warning: comment on exported type CreateOrUpdateViewsSet201Response should be of the form "CreateOrUpdateViewsSet201Response ..." (with optional leading article) (golint)
    • Line 705: warning: exported method CreateOrUpdateViewsSet201Response.StatusCode should have comment or be unexported (golint)
    • Line 715: warning: comment on exported type CreateOrUpdateViewsSet400Response should be of the form "CreateOrUpdateViewsSet400Response ..." (with optional leading article) (golint)
    • Line 720: warning: exported method CreateOrUpdateViewsSet400Response.StatusCode should have comment or be unexported (golint)
    • Line 730: warning: comment on exported type CreateOrUpdateViewsSet403Response should be of the form "CreateOrUpdateViewsSet403Response ..." (with optional leading article) (golint)
    • Line 735: warning: exported method CreateOrUpdateViewsSet403Response.StatusCode should have comment or be unexported (golint)
    • Line 745: warning: comment on exported type CreateOrUpdateViewsSet405Response should be of the form "CreateOrUpdateViewsSet405Response ..." (with optional leading article) (golint)
    • Line 750: warning: exported method CreateOrUpdateViewsSet405Response.StatusCode should have comment or be unexported (golint)
    • Line 760: warning: exported type ShowVehicleInViewRequest should have comment or be unexported (golint)
    • Line 769: warning: exported type ShowVehicleInViewResponse should have comment or be unexported (golint)
    • Line 775: warning: comment on exported type ShowVehicleInView200Response should be of the form "ShowVehicleInView200Response ..." (with optional leading article) (golint)
    • Line 780: warning: exported method ShowVehicleInView200Response.StatusCode should have comment or be unexported (golint)
    • Line 790: warning: comment on exported type ShowVehicleInView403Response should be of the form "ShowVehicleInView403Response ..." (with optional leading article) (golint)
    • Line 795: warning: exported method ShowVehicleInView403Response.StatusCode should have comment or be unexported (golint)
    • Line 805: warning: comment on exported type ShowVehicleInView404Response should be of the form "ShowVehicleInView404Response ..." (with optional leading article) (golint)
    • Line 810: warning: exported method ShowVehicleInView404Response.StatusCode should have comment or be unexported (golint)
    • Line 820: warning: exported type GetPermissionsRequest should have comment or be unexported (golint)
    • Line 824: warning: exported type GetPermissionsResponse should have comment or be unexported (golint)
    • Line 830: warning: comment on exported type GetPermissions200Response should be of the form "GetPermissions200Response ..." (with optional leading article) (golint)
    • Line 837: warning: exported method GetPermissions200Response.StatusCode should have comment or be unexported (golint)
    • Line 848: warning: comment on exported type GetPermissions403Response should be of the form "GetPermissions403Response ..." (with optional leading article) (golint)
    • Line 853: warning: exported method GetPermissions403Response.StatusCode should have comment or be unexported (golint)
    • Line 863: warning: exported type DestroySessionRequest should have comment or be unexported (golint)
    • Line 867: warning: exported type DestroySessionResponse should have comment or be unexported (golint)
    • Line 873: warning: comment on exported type DestroySession200Response should be of the form "DestroySession200Response ..." (with optional leading article) (golint)
    • Line 878: warning: exported method DestroySession200Response.StatusCode should have comment or be unexported (golint)
    • Line 888: warning: comment on exported type DestroySession404Response should be of the form "DestroySession404Response ..." (with optional leading article) (golint)
    • Line 893: warning: exported method DestroySession404Response.StatusCode should have comment or be unexported (golint)
    • Line 903: warning: exported type GetUserInfoRequest should have comment or be unexported (golint)
    • Line 908: warning: exported type GetUserInfoResponse should have comment or be unexported (golint)
    • Line 914: warning: comment on exported type GetUserInfo200Response should be of the form "GetUserInfo200Response ..." (with optional leading article) (golint)
    • Line 921: warning: exported method GetUserInfo200Response.StatusCode should have comment or be unexported (golint)
    • Line 932: warning: comment on exported type GetUserInfo400Response should be of the form "GetUserInfo400Response ..." (with optional leading article) (golint)
    • Line 939: warning: exported method GetUserInfo400Response.StatusCode should have comment or be unexported (golint)
    • Line 950: warning: comment on exported type GetUserInfo403Response should be of the form "GetUserInfo403Response ..." (with optional leading article) (golint)
    • Line 955: warning: exported method GetUserInfo403Response.StatusCode should have comment or be unexported (golint)
    • Line 965: warning: exported type Object2 should have comment or be unexported (golint)
    • Line 970: warning: exported type CreateSessionRequest should have comment or be unexported (golint)
    • Line 974: warning: exported type CreateSessionResponse should have comment or be unexported (golint)
    • Line 980: warning: comment on exported type CreateSession200Response should be of the form "CreateSession200Response ..." (with optional leading article) (golint)
    • Line 987: warning: exported method CreateSession200Response.StatusCode should have comment or be unexported (golint)
    • Line 998: warning: comment on exported type CreateSession400Response should be of the form "CreateSession400Response ..." (with optional leading article) (golint)
    • Line 1005: warning: exported method CreateSession400Response.StatusCode should have comment or be unexported (golint)
    • Line 1016: warning: comment on exported type CreateSession401Response should be of the form "CreateSession401Response ..." (with optional leading article) (golint)
    • Line 1021: warning: exported method CreateSession401Response.StatusCode should have comment or be unexported (golint)
    • Line 1031: warning: exported type GetUsersRequest should have comment or be unexported (golint)
    • Line 1035: warning: exported type GetUsersResponse should have comment or be unexported (golint)
    • Line 1041: warning: comment on exported type GetUsers200Response should be of the form "GetUsers200Response ..." (with optional leading article) (golint)
    • Line 1048: warning: exported method GetUsers200Response.StatusCode should have comment or be unexported (golint)
    • Line 1059: warning: comment on exported type GetUsers403Response should be of the form "GetUsers403Response ..." (with optional leading article) (golint)
    • Line 1064: warning: exported method GetUsers403Response.StatusCode should have comment or be unexported (golint)
    • Line 1074: warning: exported type DeleteUserRequest should have comment or be unexported (golint)
    • Line 1080: warning: exported type DeleteUserResponse should have comment or be unexported (golint)
    • Line 1086: warning: comment on exported type DeleteUser200Response should be of the form "DeleteUser200Response ..." (with optional leading article) (golint)
    • Line 1091: warning: exported method DeleteUser200Response.StatusCode should have comment or be unexported (golint)
    • Line 1101: warning: comment on exported type DeleteUser403Response should be of the form "DeleteUser403Response ..." (with optional leading article) (golint)
    • Line 1106: warning: exported method DeleteUser403Response.StatusCode should have comment or be unexported (golint)
    • Line 1116: warning: comment on exported type DeleteUser404Response should be of the form "DeleteUser404Response ..." (with optional leading article) (golint)
    • Line 1121: warning: exported method DeleteUser404Response.StatusCode should have comment or be unexported (golint)
    • Line 1131: warning: exported type GetUserRequest should have comment or be unexported (golint)
    • Line 1137: warning: exported type GetUserResponse should have comment or be unexported (golint)
    • Line 1143: warning: comment on exported type GetUser200Response should be of the form "GetUser200Response ..." (with optional leading article) (golint)
    • Line 1150: warning: exported method GetUser200Response.StatusCode should have comment or be unexported (golint)
    • Line 1161: warning: comment on exported type GetUser403Response should be of the form "GetUser403Response ..." (with optional leading article) (golint)
    • Line 1166: warning: exported method GetUser403Response.StatusCode should have comment or be unexported (golint)
    • Line 1176: warning: comment on exported type GetUser404Response should be of the form "GetUser404Response ..." (with optional leading article) (golint)
    • Line 1181: warning: exported method GetUser404Response.StatusCode should have comment or be unexported (golint)
    • Line 1191: warning: exported type CreateOrUpdateUserRequest should have comment or be unexported (golint)
    • Line 1198: warning: exported type CreateOrUpdateUserResponse should have comment or be unexported (golint)
    • Line 1204: warning: comment on exported type CreateOrUpdateUser200Response should be of the form "CreateOrUpdateUser200Response ..." (with optional leading article) (golint)
    • Line 1209: warning: exported method CreateOrUpdateUser200Response.StatusCode should have comment or be unexported (golint)
    • Line 1219: warning: comment on exported type CreateOrUpdateUser201Response should be of the form "CreateOrUpdateUser201Response ..." (with optional leading article) (golint)
    • Line 1224: warning: exported method CreateOrUpdateUser201Response.StatusCode should have comment or be unexported (golint)
    • Line 1234: warning: comment on exported type CreateOrUpdateUser400Response should be of the form "CreateOrUpdateUser400Response ..." (with optional leading article) (golint)
    • Line 1239: warning: exported method CreateOrUpdateUser400Response.StatusCode should have comment or be unexported (golint)
    • Line 1249: warning: comment on exported type CreateOrUpdateUser403Response should be of the form "CreateOrUpdateUser403Response ..." (with optional leading article) (golint)
    • Line 1254: warning: exported method CreateOrUpdateUser403Response.StatusCode should have comment or be unexported (golint)
    • Line 1264: warning: comment on exported type CreateOrUpdateUser405Response should be of the form "CreateOrUpdateUser405Response ..." (with optional leading article) (golint)
    • Line 1269: warning: exported method CreateOrUpdateUser405Response.StatusCode should have comment or be unexported (golint)
    • Line 1279: warning: exported type GetBookingRequest should have comment or be unexported (golint)
    • Line 1283: warning: exported type GetBookingResponse should have comment or be unexported (golint)
    • Line 1289: warning: comment on exported type GetBooking200Response should be of the form "GetBooking200Response ..." (with optional leading article) (golint)
    • Line 1296: warning: exported method GetBooking200Response.StatusCode should have comment or be unexported (golint)
    • Line 1307: warning: comment on exported type GetBooking400Response should be of the form "GetBooking400Response ..." (with optional leading article) (golint)
    • Line 1312: warning: exported method GetBooking400Response.StatusCode should have comment or be unexported (golint)
    • Line 1322: warning: comment on exported type GetBooking401Response should be of the form "GetBooking401Response ..." (with optional leading article) (golint)
    • Line 1327: warning: exported method GetBooking401Response.StatusCode should have comment or be unexported (golint)
    • Line 1337: warning: comment on exported type GetBooking404Response should be of the form "GetBooking404Response ..." (with optional leading article) (golint)
    • Line 1342: warning: exported method GetBooking404Response.StatusCode should have comment or be unexported (golint)
    • Line 1352: warning: comment on exported type GetBooking500Response should be of the form "GetBooking500Response ..." (with optional leading article) (golint)
    • Line 1357: warning: exported method GetBooking500Response.StatusCode should have comment or be unexported (golint)
    • Line 1367: warning: exported type GetBookingsRequest should have comment or be unexported (golint)
    • Line 1373: warning: exported type GetBookingsResponse should have comment or be unexported (golint)
    • Line 1379: warning: comment on exported type GetBookings200Response should be of the form "GetBookings200Response ..." (with optional leading article) (golint)
    • Line 1386: warning: exported method GetBookings200Response.StatusCode should have comment or be unexported (golint)
    • Line 1397: warning: comment on exported type GetBookings400Response should be of the form "GetBookings400Response ..." (with optional leading article) (golint)
    • Line 1402: warning: exported method GetBookings400Response.StatusCode should have comment or be unexported (golint)
    • Line 1412: warning: comment on exported type GetBookings401Response should be of the form "GetBookings401Response ..." (with optional leading article) (golint)
    • Line 1417: warning: exported method GetBookings401Response.StatusCode should have comment or be unexported (golint)
    • Line 1427: warning: comment on exported type GetBookings404Response should be of the form "GetBookings404Response ..." (with optional leading article) (golint)
    • Line 1432: warning: exported method GetBookings404Response.StatusCode should have comment or be unexported (golint)
    • Line 1442: warning: comment on exported type GetBookings500Response should be of the form "GetBookings500Response ..." (with optional leading article) (golint)
    • Line 1447: warning: exported method GetBookings500Response.StatusCode should have comment or be unexported (golint)
    • Line 1457: warning: exported type ListModelsRequest should have comment or be unexported (golint)
    • Line 1466: warning: exported type ListModelsResponse should have comment or be unexported (golint)
    • Line 1472: warning: comment on exported type ListModels200Response should be of the form "ListModels200Response ..." (with optional leading article) (golint)
    • Line 1479: warning: exported method ListModels200Response.StatusCode should have comment or be unexported (golint)
    • Line 1490: warning: exported type GetClassesRequest should have comment or be unexported (golint)
    • Line 1495: warning: exported type GetClassesResponse should have comment or be unexported (golint)
    • Line 1501: warning: comment on exported type GetClasses200Response should be of the form "GetClasses200Response ..." (with optional leading article) (golint)
    • Line 1508: warning: exported method GetClasses200Response.StatusCode should have comment or be unexported (golint)
    • Line 1519: warning: comment on exported type GetClasses400Response should be of the form "GetClasses400Response ..." (with optional leading article) (golint)
    • Line 1526: warning: exported method GetClasses400Response.StatusCode should have comment or be unexported (golint)
    • Line 1537: warning: exported type CodeRequest should have comment or be unexported (golint)
    • Line 1544: warning: exported type CodeResponse should have comment or be unexported (golint)
    • Line 1550: warning: comment on exported type Code200Response should be of the form "Code200Response ..." (with optional leading article) (golint)
    • Line 1557: warning: exported method Code200Response.StatusCode should have comment or be unexported (golint)
    • Line 1568: warning: comment on exported type Code400Response should be of the form "Code400Response ..." (with optional leading article) (golint)
    • Line 1573: warning: exported method Code400Response.StatusCode should have comment or be unexported (golint)
    • Line 1583: warning: comment on exported type Code401Response should be of the form "Code401Response ..." (with optional leading article) (golint)
    • Line 1588: warning: exported method Code401Response.StatusCode should have comment or be unexported (golint)
    • Line 1598: warning: comment on exported type Code404Response should be of the form "Code404Response ..." (with optional leading article) (golint)
    • Line 1603: warning: exported method Code404Response.StatusCode should have comment or be unexported (golint)
    • Line 1613: warning: comment on exported type Code500Response should be of the form "Code500Response ..." (with optional leading article) (golint)
    • Line 1618: warning: exported method Code500Response.StatusCode should have comment or be unexported (golint)
    • Line 1628: warning: exported type DeleteCustomerSessionRequest should have comment or be unexported (golint)
    • Line 1633: warning: exported type DeleteCustomerSessionResponse should have comment or be unexported (golint)
    • Line 1639: warning: comment on exported type DeleteCustomerSession204Response should be of the form "DeleteCustomerSession204Response ..." (with optional leading article) (golint)
    • Line 1644: warning: exported method DeleteCustomerSession204Response.StatusCode should have comment or be unexported (golint)
    • Line 1654: warning: comment on exported type DeleteCustomerSession401Response should be of the form "DeleteCustomerSession401Response ..." (with optional leading article) (golint)
    • Line 1659: warning: exported method DeleteCustomerSession401Response.StatusCode should have comment or be unexported (golint)
    • Line 1669: warning: comment on exported type DeleteCustomerSession500Response should be of the form "DeleteCustomerSession500Response ..." (with optional leading article) (golint)
    • Line 1674: warning: exported method DeleteCustomerSession500Response.StatusCode should have comment or be unexported (golint)
    • Line 1684: warning: exported type CreateCustomerSessionRequest should have comment or be unexported (golint)
    • Line 1690: warning: exported type CreateCustomerSessionResponse should have comment or be unexported (golint)
    • Line 1696: warning: comment on exported type CreateCustomerSession201Response should be of the form "CreateCustomerSession201Response ..." (with optional leading article) (golint)
    • Line 1703: warning: exported method CreateCustomerSession201Response.StatusCode should have comment or be unexported (golint)
    • Line 1714: warning: comment on exported type CreateCustomerSession401Response should be of the form "CreateCustomerSession401Response ..." (with optional leading article) (golint)
    • Line 1719: warning: exported method CreateCustomerSession401Response.StatusCode should have comment or be unexported (golint)
    • Line 1729: warning: comment on exported type CreateCustomerSession403Response should be of the form "CreateCustomerSession403Response ..." (with optional leading article) (golint)
    • Line 1736: warning: exported method CreateCustomerSession403Response.StatusCode should have comment or be unexported (golint)
    • Line 1746: warning: comment on exported type CreateCustomerSession422Response should be of the form "CreateCustomerSession422Response ..." (with optional leading article) (golint)
    • Line 1753: warning: exported method CreateCustomerSession422Response.StatusCode should have comment or be unexported (golint)
    • Line 1764: warning: comment on exported type CreateCustomerSession500Response should be of the form "CreateCustomerSession500Response ..." (with optional leading article) (golint)
    • Line 1769: warning: exported method CreateCustomerSession500Response.StatusCode should have comment or be unexported (golint)
    • Line 1779: warning: exported type DownloadNestedFileRequest should have comment or be unexported (golint)
    • Line 1781: warning: exported type DownloadNestedFileResponse should have comment or be unexported (golint)
    • Line 1787: warning: comment on exported type DownloadNestedFile200Response should be of the form "DownloadNestedFile200Response ..." (with optional leading article) (golint)
    • Line 1794: warning: exported method DownloadNestedFile200Response.StatusCode should have comment or be unexported (golint)
    • Line 1805: warning: exported type DownloadImageRequest should have comment or be unexported (golint)
    • Line 1809: warning: exported type DownloadImageResponse should have comment or be unexported (golint)
    • Line 1815: warning: comment on exported type DownloadImage200Response should be of the form "DownloadImage200Response ..." (with optional leading article) (golint)
    • Line 1823: warning: exported method DownloadImage200Response.StatusCode should have comment or be unexported (golint)
    • Line 1838: warning: comment on exported type DownloadImage500Response should be of the form "DownloadImage500Response ..." (with optional leading article) (golint)
    • Line 1843: warning: exported method DownloadImage500Response.StatusCode should have comment or be unexported (golint)
    • Line 1853: warning: exported type ListElementsRequest should have comment or be unexported (golint)
    • Line 1858: warning: exported type ListElementsResponse should have comment or be unexported (golint)
    • Line 1864: warning: comment on exported type ListElements200Response should be of the form "ListElements200Response ..." (with optional leading article) (golint)
    • Line 1872: warning: exported method ListElements200Response.StatusCode should have comment or be unexported (golint)
    • Line 1884: warning: comment on exported type ListElements500Response should be of the form "ListElements500Response ..." (with optional leading article) (golint)
    • Line 1889: warning: exported method ListElements500Response.StatusCode should have comment or be unexported (golint)
    • Line 1899: warning: exported type FileUploadRequestFormData should have comment or be unexported (golint)
    • Line 1903: warning: exported type FileUploadRequest should have comment or be unexported (golint)
    • Line 1907: warning: exported type FileUploadResponse should have comment or be unexported (golint)
    • Line 1913: warning: comment on exported type FileUpload204Response should be of the form "FileUpload204Response ..." (with optional leading article) (golint)
    • Line 1918: warning: exported method FileUpload204Response.StatusCode should have comment or be unexported (golint)
    • Line 1928: warning: comment on exported type FileUpload500Response should be of the form "FileUpload500Response ..." (with optional leading article) (golint)
    • Line 1933: warning: exported method FileUpload500Response.StatusCode should have comment or be unexported (golint)
    • Line 1943: warning: exported type DownloadFileRequest should have comment or be unexported (golint)
    • Line 1947: warning: exported type DownloadFileResponse should have comment or be unexported (golint)
    • Line 1953: warning: comment on exported type DownloadFile200Response should be of the form "DownloadFile200Response ..." (with optional leading article) (golint)
    • Line 1961: warning: exported method DownloadFile200Response.StatusCode should have comment or be unexported (golint)
    • Line 1972: warning: exported type GenericFileDownloadRequest should have comment or be unexported (golint)
    • Line 1976: warning: exported type GenericFileDownloadResponse should have comment or be unexported (golint)
    • Line 1982: warning: comment on exported type GenericFileDownload200Response should be of the form "GenericFileDownload200Response ..." (with optional leading article) (golint)
    • Line 1991: warning: exported method GenericFileDownload200Response.StatusCode should have comment or be unexported (golint)
    • Line 2007: warning: comment on exported type GenericFileDownload500Response should be of the form "GenericFileDownload500Response ..." (with optional leading article) (golint)
    • Line 2012: warning: exported method GenericFileDownload500Response.StatusCode should have comment or be unexported (golint)
    • Line 2022: warning: exported type GetRentalRequest should have comment or be unexported (golint)
    • Line 2026: warning: exported type GetRentalResponse should have comment or be unexported (golint)
    • Line 2032: warning: comment on exported type GetRental200Response should be of the form "GetRental200Response ..." (with optional leading article) (golint)
    • Line 2037: warning: exported method GetRental200Response.StatusCode should have comment or be unexported (golint)
    • Line 2047: warning: comment on exported type GetRental400Response should be of the form "GetRental400Response ..." (with optional leading article) (golint)
    • Line 2054: warning: exported method GetRental400Response.StatusCode should have comment or be unexported (golint)
    • Line 2065: warning: exported type GetShoesRequest should have comment or be unexported (golint)
    • Line 2067: warning: exported type GetShoesResponse should have comment or be unexported (golint)
    • Line 2073: warning: comment on exported type GetShoes200Response should be of the form "GetShoes200Response ..." (with optional leading article) (golint)
    • Line 2080: warning: exported method GetShoes200Response.StatusCode should have comment or be unexported (golint)
    • Line 2091: warning: exported type PostUploadRequestFormData should have comment or be unexported (golint)
    • Line 2096: warning: exported type PostUploadRequest should have comment or be unexported (golint)
    • Line 2100: warning: exported type PostUploadResponse should have comment or be unexported (golint)
    • Line 2106: warning: comment on exported type PostUpload200Response should be of the form "PostUpload200Response ..." (with optional leading article) (golint)
    • Line 2111: warning: exported method PostUpload200Response.StatusCode should have comment or be unexported (golint)
    • Line 2121: warning: comment on exported type PostUpload500Response should be of the form "PostUpload500Response ..." (with optional leading article) (golint)
    • Line 2126: warning: exported method PostUpload500Response.StatusCode should have comment or be unexported (golint)
    • apikit/tests/api/server.go
    • Line 15: warning: exported type GetClientsHandler should have comment or be unexported (golint)
    • Line 22: warning: exported method VisAdminServer.SetGetClientsHandler should have comment or be unexported (golint)
    • Line 26: warning: exported method VisAdminServer.GetClientsHandler should have comment or be unexported (golint)
    • Line 30: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 61: warning: exported type DeleteClientHandler should have comment or be unexported (golint)
    • Line 68: warning: exported method VisAdminServer.SetDeleteClientHandler should have comment or be unexported (golint)
    • Line 72: warning: exported method VisAdminServer.DeleteClientHandler should have comment or be unexported (golint)
    • Line 76: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 111: warning: exported type GetClientHandler should have comment or be unexported (golint)
    • Line 118: warning: exported method VisAdminServer.SetGetClientHandler should have comment or be unexported (golint)
    • Line 122: warning: exported method VisAdminServer.GetClientHandler should have comment or be unexported (golint)
    • Line 126: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 161: warning: exported type CreateOrUpdateClientHandler should have comment or be unexported (golint)
    • Line 168: warning: exported method VisAdminServer.SetCreateOrUpdateClientHandler should have comment or be unexported (golint)
    • Line 172: warning: exported method VisAdminServer.CreateOrUpdateClientHandler should have comment or be unexported (golint)
    • Line 176: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 222: warning: exported type GetViewsSetsHandler should have comment or be unexported (golint)
    • Line 229: warning: exported method VisAdminServer.SetGetViewsSetsHandler should have comment or be unexported (golint)
    • Line 233: warning: exported method VisAdminServer.GetViewsSetsHandler should have comment or be unexported (golint)
    • Line 237: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 272: warning: exported type DeleteViewsSetHandler should have comment or be unexported (golint)
    • Line 279: warning: exported method VisAdminServer.SetDeleteViewsSetHandler should have comment or be unexported (golint)
    • Line 283: warning: exported method VisAdminServer.DeleteViewsSetHandler should have comment or be unexported (golint)
    • Line 287: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 326: warning: exported type GetViewsSetHandler should have comment or be unexported (golint)
    • Line 333: warning: exported method VisAdminServer.SetGetViewsSetHandler should have comment or be unexported (golint)
    • Line 337: warning: exported method VisAdminServer.GetViewsSetHandler should have comment or be unexported (golint)
    • Line 341: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 388: warning: comment on exported type ActivateViewsSetHandler should be of the form "ActivateViewsSetHandler ..." (with optional leading article) (golint)
    • Line 396: warning: exported method VisAdminServer.SetActivateViewsSetHandler should have comment or be unexported (golint)
    • Line 400: warning: exported method VisAdminServer.ActivateViewsSetHandler should have comment or be unexported (golint)
    • Line 404: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 443: warning: exported type CreateOrUpdateViewsSetHandler should have comment or be unexported (golint)
    • Line 450: warning: exported method VisAdminServer.SetCreateOrUpdateViewsSetHandler should have comment or be unexported (golint)
    • Line 454: warning: exported method VisAdminServer.CreateOrUpdateViewsSetHandler should have comment or be unexported (golint)
    • Line 458: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 508: warning: exported type ShowVehicleInViewHandler should have comment or be unexported (golint)
    • Line 515: warning: exported method VisAdminServer.SetShowVehicleInViewHandler should have comment or be unexported (golint)
    • Line 519: warning: exported method VisAdminServer.ShowVehicleInViewHandler should have comment or be unexported (golint)
    • Line 523: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 574: warning: comment on exported type GetPermissionsHandler should be of the form "GetPermissionsHandler ..." (with optional leading article) (golint)
    • Line 585: warning: exported method VisAdminServer.SetGetPermissionsHandler should have comment or be unexported (golint)
    • Line 589: warning: exported method VisAdminServer.GetPermissionsHandler should have comment or be unexported (golint)
    • Line 593: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 624: warning: exported type DestroySessionHandler should have comment or be unexported (golint)
    • Line 631: warning: exported method VisAdminServer.SetDestroySessionHandler should have comment or be unexported (golint)
    • Line 635: warning: exported method VisAdminServer.DestroySessionHandler should have comment or be unexported (golint)
    • Line 639: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 670: warning: exported type GetUserInfoHandler should have comment or be unexported (golint)
    • Line 677: warning: exported method VisAdminServer.SetGetUserInfoHandler should have comment or be unexported (golint)
    • Line 681: warning: exported method VisAdminServer.GetUserInfoHandler should have comment or be unexported (golint)
    • Line 685: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 729: warning: exported type CreateSessionHandler should have comment or be unexported (golint)
    • Line 736: warning: exported method VisAdminServer.SetCreateSessionHandler should have comment or be unexported (golint)
    • Line 740: warning: exported method VisAdminServer.CreateSessionHandler should have comment or be unexported (golint)
    • Line 744: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 785: warning: exported type GetUsersHandler should have comment or be unexported (golint)
    • Line 792: warning: exported method VisAdminServer.SetGetUsersHandler should have comment or be unexported (golint)
    • Line 796: warning: exported method VisAdminServer.GetUsersHandler should have comment or be unexported (golint)
    • Line 800: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 831: warning: exported type DeleteUserHandler should have comment or be unexported (golint)
    • Line 838: warning: exported method VisAdminServer.SetDeleteUserHandler should have comment or be unexported (golint)
    • Line 842: warning: exported method VisAdminServer.DeleteUserHandler should have comment or be unexported (golint)
    • Line 846: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 887: warning: exported type GetUserHandler should have comment or be unexported (golint)
    • Line 894: warning: exported method VisAdminServer.SetGetUserHandler should have comment or be unexported (golint)
    • Line 898: warning: exported method VisAdminServer.GetUserHandler should have comment or be unexported (golint)
    • Line 902: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 943: warning: exported type CreateOrUpdateUserHandler should have comment or be unexported (golint)
    • Line 950: warning: exported method VisAdminServer.SetCreateOrUpdateUserHandler should have comment or be unexported (golint)
    • Line 954: warning: exported method VisAdminServer.CreateOrUpdateUserHandler should have comment or be unexported (golint)
    • Line 958: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1010: warning: comment on exported type GetBookingHandler should be of the form "GetBookingHandler ..." (with optional leading article) (golint)
    • Line 1018: warning: exported method VisAdminServer.SetGetBookingHandler should have comment or be unexported (golint)
    • Line 1022: warning: exported method VisAdminServer.GetBookingHandler should have comment or be unexported (golint)
    • Line 1026: warning: comment on exported type GetBookingsHandler should be of the form "GetBookingsHandler ..." (with optional leading article) (golint)
    • Line 1034: warning: exported method VisAdminServer.SetGetBookingsHandler should have comment or be unexported (golint)
    • Line 1038: warning: exported method VisAdminServer.GetBookingsHandler should have comment or be unexported (golint)
    • Line 1042: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1078: warning: exported type ListModelsHandler should have comment or be unexported (golint)
    • Line 1085: warning: exported method VisAdminServer.SetListModelsHandler should have comment or be unexported (golint)
    • Line 1089: warning: exported method VisAdminServer.ListModelsHandler should have comment or be unexported (golint)
    • Line 1093: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1150: warning: exported type GetClassesHandler should have comment or be unexported (golint)
    • Line 1157: warning: exported method VisAdminServer.SetGetClassesHandler should have comment or be unexported (golint)
    • Line 1161: warning: exported method VisAdminServer.GetClassesHandler should have comment or be unexported (golint)
    • Line 1165: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1198: warning: exported type CodeHandler should have comment or be unexported (golint)
    • Line 1205: warning: exported method VisAdminServer.SetCodeHandler should have comment or be unexported (golint)
    • Line 1209: warning: exported method VisAdminServer.CodeHandler should have comment or be unexported (golint)
    • Line 1213: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1280: warning: comment on exported type DeleteCustomerSessionHandler should be of the form "DeleteCustomerSessionHandler ..." (with optional leading article) (golint)
    • Line 1290: warning: exported method VisAdminServer.SetDeleteCustomerSessionHandler should have comment or be unexported (golint)
    • Line 1294: warning: exported method VisAdminServer.DeleteCustomerSessionHandler should have comment or be unexported (golint)
    • Line 1298: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1328: warning: comment on exported type CreateCustomerSessionHandler should be of the form "CreateCustomerSessionHandler ..." (with optional leading article) (golint)
    • Line 1338: warning: exported method VisAdminServer.SetCreateCustomerSessionHandler should have comment or be unexported (golint)
    • Line 1342: warning: exported method VisAdminServer.CreateCustomerSessionHandler should have comment or be unexported (golint)
    • Line 1346: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1405: warning: comment on exported type DownloadNestedFileHandler should be of the form "DownloadNestedFileHandler ..." (with optional leading article) (golint)
    • Line 1415: warning: exported method VisAdminServer.SetDownloadNestedFileHandler should have comment or be unexported (golint)
    • Line 1419: warning: exported method VisAdminServer.DownloadNestedFileHandler should have comment or be unexported (golint)
    • Line 1423: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1446: warning: comment on exported type DownloadImageHandler should be of the form "DownloadImageHandler ..." (with optional leading article) (golint)
    • Line 1454: warning: exported method VisAdminServer.SetDownloadImageHandler should have comment or be unexported (golint)
    • Line 1458: warning: exported method VisAdminServer.DownloadImageHandler should have comment or be unexported (golint)
    • Line 1462: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1489: warning: exported type ListElementsHandler should have comment or be unexported (golint)
    • Line 1496: warning: exported method VisAdminServer.SetListElementsHandler should have comment or be unexported (golint)
    • Line 1500: warning: exported method VisAdminServer.ListElementsHandler should have comment or be unexported (golint)
    • Line 1504: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1539: warning: exported type FileUploadHandler should have comment or be unexported (golint)
    • Line 1546: warning: exported method VisAdminServer.SetFileUploadHandler should have comment or be unexported (golint)
    • Line 1550: warning: exported method VisAdminServer.FileUploadHandler should have comment or be unexported (golint)
    • Line 1554: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1590: warning: comment on exported type DownloadFileHandler should be of the form "DownloadFileHandler ..." (with optional leading article) (golint)
    • Line 1598: warning: exported method VisAdminServer.SetDownloadFileHandler should have comment or be unexported (golint)
    • Line 1602: warning: exported method VisAdminServer.DownloadFileHandler should have comment or be unexported (golint)
    • Line 1606: warning: comment on exported type GenericFileDownloadHandler should be of the form "GenericFileDownloadHandler ..." (with optional leading article) (golint)
    • Line 1614: warning: exported method VisAdminServer.SetGenericFileDownloadHandler should have comment or be unexported (golint)
    • Line 1618: warning: exported method VisAdminServer.GenericFileDownloadHandler should have comment or be unexported (golint)
    • Line 1622: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1649: warning: comment on exported type GetRentalHandler should be of the form "GetRentalHandler ..." (with optional leading article) (golint)
    • Line 1657: warning: exported method VisAdminServer.SetGetRentalHandler should have comment or be unexported (golint)
    • Line 1661: warning: exported method VisAdminServer.GetRentalHandler should have comment or be unexported (golint)
    • Line 1665: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1706: warning: exported type GetShoesHandler should have comment or be unexported (golint)
    • Line 1713: warning: exported method VisAdminServer.SetGetShoesHandler should have comment or be unexported (golint)
    • Line 1717: warning: exported method VisAdminServer.GetShoesHandler should have comment or be unexported (golint)
    • Line 1721: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1744: warning: exported type PostUploadHandler should have comment or be unexported (golint)
    • Line 1751: warning: exported method VisAdminServer.SetPostUploadHandler should have comment or be unexported (golint)
    • Line 1755: warning: exported method VisAdminServer.PostUploadHandler should have comment or be unexported (golint)
    • Line 1759: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 1801: warning: exported type VisAdminServer should have comment or be unexported (golint)
    • Line 1866: warning: exported function NewVisAdminServer should have comment or be unexported (golint)
    • Line 1873: warning: exported method VisAdminServer.Start should have comment or be unexported (golint)
    • apikit/generator/types/tags.go
    • Line 15: warning: exported type RegexValidator should have comment or be unexported (golint)
    • Line 24: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 53: warning: exported function FilterTag should have comment or be unexported (golint)
    • apikit/generator/operation.go
    • Line 9: warning: exported type Operation should have comment or be unexported (golint)
    • Line 18: warning: exported method Operation.HasConsume should have comment or be unexported (golint)
    • Line 22: warning: exported method Operation.RegexHasProduces should have comment or be unexported (golint)
    • Line 26: warning: exported method Operation.HasConsumes should have comment or be unexported (golint)
    • Line 35: warning: exported method Operation.HasProduce should have comment or be unexported (golint)
    • Line 39: warning: exported method Operation.HasProduces should have comment or be unexported (golint)
    • Line 48: warning: exported method Operation.HasValidConsumes should have comment or be unexported (golint)
    • Line 52: warning: exported method Operation.HasValidProduces should have comment or be unexported (golint)
    • apikit/internal/framework/xhttp/error/errors.go
    • Line 9: warning: exported function NewNotSupportedContentType should have comment or be unexported (golint)
    • Line 29: warning: error var NewRequestObjectIsNilError should have name of the form ErrFoo (golint)
    • Line 29: warning: exported var NewRequestObjectIsNilError should have comment or be unexported (golint)
    • Line 31: warning: exported function NewUnknownResponseError should have comment or be unexported (golint)
    • apikit/tests/mock/framework.go
    • Line 27: warning: exported type HooksClient should have comment or be unexported (golint)
    • Line 31: warning: exported function DevHook should have comment or be unexported (golint)
    • Line 62: warning: error var EmptyString should have name of the form ErrFoo (golint)
    • Line 62: warning: exported var EmptyString should have comment or be unexported (golint)
    • Line 248: warning: error var NullError should have name of the form ErrFoo (golint)
    • Line 248: warning: exported var NullError should have comment or be unexported (golint)
    • Line 249: warning: error var TypeError should have name of the form ErrFoo (golint)
    • Line 252: warning: exported function JSON should have comment or be unexported (golint)
    • Line 277: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 485: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 491: warning: exported type ValidationErrorsObject should have comment or be unexported (golint)
    • Line 496: warning: exported type ValidationErrorObject should have comment or be unexported (golint)
    • Line 502: warning: exported function NewValidation should have comment or be unexported (golint)
    • Line 508: warning: exported type Validator should have comment or be unexported (golint)
    • Line 512: warning: exported method Validator.ValidateRequest should have comment or be unexported (golint)
    • Line 545: warning: exported var GitCommit should have comment or be unexported (golint)
    • Line 551: warning: exported type VersionInfo should have comment or be unexported (golint)
    • Line 559: warning: exported function ApikitVersion should have comment or be unexported (golint)
    • Line 569: warning: exported method VersionInfo.PrintTable should have comment or be unexported (golint)
    • Line 600: warning: exported type Opts should have comment or be unexported (golint)
    • Line 618: warning: exported type NewRequest should have comment or be unexported (golint)
    • Line 648: warning: exported const ContentTypeTextPlain should have comment (or a comment on this block) or be unexported (golint)
    • Line 693: warning: error var newRequestObjectIsNilError should have name of the form errFoo (golint)
    • Line 718: warning: exported type MimeFile should have comment or be unexported (golint)
    • Line 744: warning: exported const RequestHeaderKey should have comment (or a comment on this block) or be unexported (golint)
    • Line 747: warning: exported type HttpContext should have comment or be unexported (golint)
    • Line 751: warning: exported function CreateHttpContext should have comment or be unexported (golint)
    • Line 810: warning: exported function NewHTTPStatusCodeError should have comment or be unexported (golint)
    • Line 822: warning: exported type HttpJsonError should have comment or be unexported (golint)
    • Line 831: warning: exported method HttpJsonError.StatusCode should have comment or be unexported (golint)
    • Line 839: warning: exported type PrometheusHandler should have comment or be unexported (golint)
    • Line 844: warning: exported function NewPrometheusHandler should have comment or be unexported (golint)
    • Line 880: warning: exported method PrometheusHandler.InitMetric should have comment or be unexported (golint)
    • Line 886: warning: exported method PrometheusHandler.HandleRequest should have comment or be unexported (golint)
    • Line 893: warning: exported type Timeouts should have comment or be unexported (golint)
    • Line 900: warning: exported type ServerOpts should have comment or be unexported (golint)
    • Line 907: warning: exported type Middleware should have comment or be unexported (golint)
    • Line 912: warning: exported type RouteDescription should have comment or be unexported (golint)
    • Line 919: warning: exported type Server should have comment or be unexported (golint)
    • Line 931: warning: exported type ErrorHandler should have comment or be unexported (golint)
    • Line 1029: warning: exported method Server.Start should have comment or be unexported (golint)
    • Line 1053: warning: exported method Server.Stop should have comment or be unexported (golint)
    • apikit/internal/framework/xprometheus/prometheus-handler.go
    • Line 12: warning: exported type PrometheusHandler should have comment or be unexported (golint)
    • Line 17: warning: exported function NewPrometheusHandler should have comment or be unexported (golint)
    • Line 53: warning: exported method PrometheusHandler.InitMetric should have comment or be unexported (golint)
    • Line 59: warning: exported method PrometheusHandler.HandleRequest should have comment or be unexported (golint)
    • apikit/tests/mock/types.go
    • Line 10: warning: exported type Address should have comment or be unexported (golint)
    • Line 19: warning: exported type BasicTypes should have comment or be unexported (golint)
    • Line 28: warning: exported type Booking should have comment or be unexported (golint)
    • Line 32: warning: exported type Object1 should have comment or be unexported (golint)
    • Line 48: warning: exported type Client should have comment or be unexported (golint)
    • Line 55: warning: comment on exported type DriveConcept should be of the form "DriveConcept ..." (with optional leading article) (golint)
    • Line 59: warning: exported const DriveConceptCOMBUSTOR should have comment (or a comment on this block) or be unexported (golint)
    • Line 66: warning: exported type EmptySlice should have comment or be unexported (golint)
    • Line 70: warning: exported type Link should have comment or be unexported (golint)
    • Line 74: warning: exported type Links should have comment or be unexported (golint)
    • Line 78: warning: exported type Model should have comment or be unexported (golint)
    • Line 84: warning: exported type NestedFileStructure should have comment or be unexported (golint)
    • Line 88: warning: exported type Price should have comment or be unexported (golint)
    • Line 93: warning: exported type Rental should have comment or be unexported (golint)
    • Line 111: warning: exported type Session should have comment or be unexported (golint)
    • Line 116: warning: exported type Shoe should have comment or be unexported (golint)
    • Line 123: warning: exported type Shoes should have comment or be unexported (golint)
    • Line 129: warning: exported type ShoesEmbedded should have comment or be unexported (golint)
    • Line 133: warning: exported type TechnicalInformation should have comment or be unexported (golint)
    • Line 137: warning: exported type User should have comment or be unexported (golint)
    • Line 146: warning: exported type ValidationError should have comment or be unexported (golint)
    • Line 152: warning: exported type ValidationErrors should have comment or be unexported (golint)
    • Line 157: warning: exported type ViewsSet should have comment or be unexported (golint)
    • Line 163: warning: comment on exported type ComponentTypes should be of the form "ComponentTypes ..." (with optional leading article) (golint)
    • Line 168: warning: exported const ComponentTypesWHEELS should have comment (or a comment on this block) or be unexported (golint)
    • Line 181: warning: comment on exported type ProductGroup should be of the form "ProductGroup ..." (with optional leading article) (golint)
    • Line 185: warning: exported const ProductGroupPKW should have comment (or a comment on this block) or be unexported (golint)
    • Line 193: warning: exported type GetClientsRequest should have comment or be unexported (golint)
    • Line 197: warning: exported type GetClientsResponse should have comment or be unexported (golint)
    • Line 203: warning: comment on exported type GetClients200Response should be of the form "GetClients200Response ..." (with optional leading article) (golint)
    • Line 210: warning: exported method GetClients200Response.StatusCode should have comment or be unexported (golint)
    • Line 221: warning: comment on exported type GetClients204Response should be of the form "GetClients204Response ..." (with optional leading article) (golint)
    • Line 226: warning: exported method GetClients204Response.StatusCode should have comment or be unexported (golint)
    • Line 236: warning: comment on exported type GetClients403Response should be of the form "GetClients403Response ..." (with optional leading article) (golint)
    • Line 241: warning: exported method GetClients403Response.StatusCode should have comment or be unexported (golint)
    • Line 251: warning: exported type DeleteClientRequest should have comment or be unexported (golint)
    • Line 256: warning: exported type DeleteClientResponse should have comment or be unexported (golint)
    • Line 262: warning: comment on exported type DeleteClient200Response should be of the form "DeleteClient200Response ..." (with optional leading article) (golint)
    • Line 267: warning: exported method DeleteClient200Response.StatusCode should have comment or be unexported (golint)
    • Line 277: warning: comment on exported type DeleteClient403Response should be of the form "DeleteClient403Response ..." (with optional leading article) (golint)
    • Line 282: warning: exported method DeleteClient403Response.StatusCode should have comment or be unexported (golint)
    • Line 292: warning: comment on exported type DeleteClient404Response should be of the form "DeleteClient404Response ..." (with optional leading article) (golint)
    • Line 297: warning: exported method DeleteClient404Response.StatusCode should have comment or be unexported (golint)
    • Line 307: warning: exported type GetClientRequest should have comment or be unexported (golint)
    • Line 312: warning: exported type GetClientResponse should have comment or be unexported (golint)
    • Line 318: warning: comment on exported type GetClient200Response should be of the form "GetClient200Response ..." (with optional leading article) (golint)
    • Line 325: warning: exported method GetClient200Response.StatusCode should have comment or be unexported (golint)
    • Line 336: warning: comment on exported type GetClient403Response should be of the form "GetClient403Response ..." (with optional leading article) (golint)
    • Line 341: warning: exported method GetClient403Response.StatusCode should have comment or be unexported (golint)
    • Line 351: warning: comment on exported type GetClient404Response should be of the form "GetClient404Response ..." (with optional leading article) (golint)
    • Line 356: warning: exported method GetClient404Response.StatusCode should have comment or be unexported (golint)
    • Line 366: warning: exported type CreateOrUpdateClientRequest should have comment or be unexported (golint)
    • Line 372: warning: exported type CreateOrUpdateClientResponse should have comment or be unexported (golint)
    • Line 378: warning: comment on exported type CreateOrUpdateClient200Response should be of the form "CreateOrUpdateClient200Response ..." (with optional leading article) (golint)
    • Line 383: warning: exported method CreateOrUpdateClient200Response.StatusCode should have comment or be unexported (golint)
    • Line 393: warning: comment on exported type CreateOrUpdateClient201Response should be of the form "CreateOrUpdateClient201Response ..." (with optional leading article) (golint)
    • Line 398: warning: exported method CreateOrUpdateClient201Response.StatusCode should have comment or be unexported (golint)
    • Line 408: warning: comment on exported type CreateOrUpdateClient400Response should be of the form "CreateOrUpdateClient400Response ..." (with optional leading article) (golint)
    • Line 413: warning: exported method CreateOrUpdateClient400Response.StatusCode should have comment or be unexported (golint)
    • Line 423: warning: comment on exported type CreateOrUpdateClient403Response should be of the form "CreateOrUpdateClient403Response ..." (with optional leading article) (golint)
    • Line 428: warning: exported method CreateOrUpdateClient403Response.StatusCode should have comment or be unexported (golint)
    • Line 438: warning: comment on exported type CreateOrUpdateClient405Response should be of the form "CreateOrUpdateClient405Response ..." (with optional leading article) (golint)
    • Line 443: warning: exported method CreateOrUpdateClient405Response.StatusCode should have comment or be unexported (golint)
    • Line 453: warning: exported type GetViewsSetsRequest should have comment or be unexported (golint)
    • Line 458: warning: exported type GetViewsSetsResponse should have comment or be unexported (golint)
    • Line 464: warning: comment on exported type GetViewsSets200Response should be of the form "GetViewsSets200Response ..." (with optional leading article) (golint)
    • Line 471: warning: exported method GetViewsSets200Response.StatusCode should have comment or be unexported (golint)
    • Line 482: warning: comment on exported type GetViewsSets403Response should be of the form "GetViewsSets403Response ..." (with optional leading article) (golint)
    • Line 487: warning: exported method GetViewsSets403Response.StatusCode should have comment or be unexported (golint)
    • Line 497: warning: exported type DeleteViewsSetRequest should have comment or be unexported (golint)
    • Line 503: warning: exported type DeleteViewsSetResponse should have comment or be unexported (golint)
    • Line 509: warning: comment on exported type DeleteViewsSet200Response should be of the form "DeleteViewsSet200Response ..." (with optional leading article) (golint)
    • Line 514: warning: exported method DeleteViewsSet200Response.StatusCode should have comment or be unexported (golint)
    • Line 524: warning: comment on exported type DeleteViewsSet403Response should be of the form "DeleteViewsSet403Response ..." (with optional leading article) (golint)
    • Line 529: warning: exported method DeleteViewsSet403Response.StatusCode should have comment or be unexported (golint)
    • Line 539: warning: comment on exported type DeleteViewsSet404Response should be of the form "DeleteViewsSet404Response ..." (with optional leading article) (golint)
    • Line 544: warning: exported method DeleteViewsSet404Response.StatusCode should have comment or be unexported (golint)
    • Line 554: warning: exported type GetViewsSetRequest should have comment or be unexported (golint)
    • Line 561: warning: exported type GetViewsSetResponse should have comment or be unexported (golint)
    • Line 567: warning: comment on exported type GetViewsSet200Response should be of the form "GetViewsSet200Response ..." (with optional leading article) (golint)
    • Line 574: warning: exported method GetViewsSet200Response.StatusCode should have comment or be unexported (golint)
    • Line 585: warning: comment on exported type GetViewsSet403Response should be of the form "GetViewsSet403Response ..." (with optional leading article) (golint)
    • Line 590: warning: exported method GetViewsSet403Response.StatusCode should have comment or be unexported (golint)
    • Line 600: warning: comment on exported type GetViewsSet404Response should be of the form "GetViewsSet404Response ..." (with optional leading article) (golint)
    • Line 605: warning: exported method GetViewsSet404Response.StatusCode should have comment or be unexported (golint)
    • Line 615: warning: exported type ActivateViewsSetRequest should have comment or be unexported (golint)
    • Line 621: warning: exported type ActivateViewsSetResponse should have comment or be unexported (golint)
    • Line 627: warning: comment on exported type ActivateViewsSet200Response should be of the form "ActivateViewsSet200Response ..." (with optional leading article) (golint)
    • Line 632: warning: exported method ActivateViewsSet200Response.StatusCode should have comment or be unexported (golint)
    • Line 642: warning: comment on exported type ActivateViewsSet403Response should be of the form "ActivateViewsSet403Response ..." (with optional leading article) (golint)
    • Line 647: warning: exported method ActivateViewsSet403Response.StatusCode should have comment or be unexported (golint)
    • Line 657: warning: comment on exported type ActivateViewsSet404Response should be of the form "ActivateViewsSet404Response ..." (with optional leading article) (golint)
    • Line 662: warning: exported method ActivateViewsSet404Response.StatusCode should have comment or be unexported (golint)
    • Line 672: warning: exported type CreateOrUpdateViewsSetRequest should have comment or be unexported (golint)
    • Line 679: warning: exported type CreateOrUpdateViewsSetResponse should have comment or be unexported (golint)
    • Line 685: warning: comment on exported type CreateOrUpdateViewsSet200Response should be of the form "CreateOrUpdateViewsSet200Response ..." (with optional leading article) (golint)
    • Line 690: warning: exported method CreateOrUpdateViewsSet200Response.StatusCode should have comment or be unexported (golint)
    • Line 700: warning: comment on exported type CreateOrUpdateViewsSet201Response should be of the form "CreateOrUpdateViewsSet201Response ..." (with optional leading article) (golint)
    • Line 705: warning: exported method CreateOrUpdateViewsSet201Response.StatusCode should have comment or be unexported (golint)
    • Line 715: warning: comment on exported type CreateOrUpdateViewsSet400Response should be of the form "CreateOrUpdateViewsSet400Response ..." (with optional leading article) (golint)
    • Line 720: warning: exported method CreateOrUpdateViewsSet400Response.StatusCode should have comment or be unexported (golint)
    • Line 730: warning: comment on exported type CreateOrUpdateViewsSet403Response should be of the form "CreateOrUpdateViewsSet403Response ..." (with optional leading article) (golint)
    • Line 735: warning: exported method CreateOrUpdateViewsSet403Response.StatusCode should have comment or be unexported (golint)
    • Line 745: warning: comment on exported type CreateOrUpdateViewsSet405Response should be of the form "CreateOrUpdateViewsSet405Response ..." (with optional leading article) (golint)
    • Line 750: warning: exported method CreateOrUpdateViewsSet405Response.StatusCode should have comment or be unexported (golint)
    • Line 760: warning: exported type ShowVehicleInViewRequest should have comment or be unexported (golint)
    • Line 769: warning: exported type ShowVehicleInViewResponse should have comment or be unexported (golint)
    • Line 775: warning: comment on exported type ShowVehicleInView200Response should be of the form "ShowVehicleInView200Response ..." (with optional leading article) (golint)
    • Line 780: warning: exported method ShowVehicleInView200Response.StatusCode should have comment or be unexported (golint)
    • Line 790: warning: comment on exported type ShowVehicleInView403Response should be of the form "ShowVehicleInView403Response ..." (with optional leading article) (golint)
    • Line 795: warning: exported method ShowVehicleInView403Response.StatusCode should have comment or be unexported (golint)
    • Line 805: warning: comment on exported type ShowVehicleInView404Response should be of the form "ShowVehicleInView404Response ..." (with optional leading article) (golint)
    • Line 810: warning: exported method ShowVehicleInView404Response.StatusCode should have comment or be unexported (golint)
    • Line 820: warning: exported type GetPermissionsRequest should have comment or be unexported (golint)
    • Line 824: warning: exported type GetPermissionsResponse should have comment or be unexported (golint)
    • Line 830: warning: comment on exported type GetPermissions200Response should be of the form "GetPermissions200Response ..." (with optional leading article) (golint)
    • Line 837: warning: exported method GetPermissions200Response.StatusCode should have comment or be unexported (golint)
    • Line 848: warning: comment on exported type GetPermissions403Response should be of the form "GetPermissions403Response ..." (with optional leading article) (golint)
    • Line 853: warning: exported method GetPermissions403Response.StatusCode should have comment or be unexported (golint)
    • Line 863: warning: exported type DestroySessionRequest should have comment or be unexported (golint)
    • Line 867: warning: exported type DestroySessionResponse should have comment or be unexported (golint)
    • Line 873: warning: comment on exported type DestroySession200Response should be of the form "DestroySession200Response ..." (with optional leading article) (golint)
    • Line 878: warning: exported method DestroySession200Response.StatusCode should have comment or be unexported (golint)
    • Line 888: warning: comment on exported type DestroySession404Response should be of the form "DestroySession404Response ..." (with optional leading article) (golint)
    • Line 893: warning: exported method DestroySession404Response.StatusCode should have comment or be unexported (golint)
    • Line 903: warning: exported type GetUserInfoRequest should have comment or be unexported (golint)
    • Line 908: warning: exported type GetUserInfoResponse should have comment or be unexported (golint)
    • Line 914: warning: comment on exported type GetUserInfo200Response should be of the form "GetUserInfo200Response ..." (with optional leading article) (golint)
    • Line 921: warning: exported method GetUserInfo200Response.StatusCode should have comment or be unexported (golint)
    • Line 932: warning: comment on exported type GetUserInfo400Response should be of the form "GetUserInfo400Response ..." (with optional leading article) (golint)
    • Line 939: warning: exported method GetUserInfo400Response.StatusCode should have comment or be unexported (golint)
    • Line 950: warning: comment on exported type GetUserInfo403Response should be of the form "GetUserInfo403Response ..." (with optional leading article) (golint)
    • Line 955: warning: exported method GetUserInfo403Response.StatusCode should have comment or be unexported (golint)
    • Line 965: warning: exported type Object2 should have comment or be unexported (golint)
    • Line 970: warning: exported type CreateSessionRequest should have comment or be unexported (golint)
    • Line 974: warning: exported type CreateSessionResponse should have comment or be unexported (golint)
    • Line 980: warning: comment on exported type CreateSession200Response should be of the form "CreateSession200Response ..." (with optional leading article) (golint)
    • Line 987: warning: exported method CreateSession200Response.StatusCode should have comment or be unexported (golint)
    • Line 998: warning: comment on exported type CreateSession400Response should be of the form "CreateSession400Response ..." (with optional leading article) (golint)
    • Line 1005: warning: exported method CreateSession400Response.StatusCode should have comment or be unexported (golint)
    • Line 1016: warning: comment on exported type CreateSession401Response should be of the form "CreateSession401Response ..." (with optional leading article) (golint)
    • Line 1021: warning: exported method CreateSession401Response.StatusCode should have comment or be unexported (golint)
    • Line 1031: warning: exported type GetUsersRequest should have comment or be unexported (golint)
    • Line 1035: warning: exported type GetUsersResponse should have comment or be unexported (golint)
    • Line 1041: warning: comment on exported type GetUsers200Response should be of the form "GetUsers200Response ..." (with optional leading article) (golint)
    • Line 1048: warning: exported method GetUsers200Response.StatusCode should have comment or be unexported (golint)
    • Line 1059: warning: comment on exported type GetUsers403Response should be of the form "GetUsers403Response ..." (with optional leading article) (golint)
    • Line 1064: warning: exported method GetUsers403Response.StatusCode should have comment or be unexported (golint)
    • Line 1074: warning: exported type DeleteUserRequest should have comment or be unexported (golint)
    • Line 1080: warning: exported type DeleteUserResponse should have comment or be unexported (golint)
    • Line 1086: warning: comment on exported type DeleteUser200Response should be of the form "DeleteUser200Response ..." (with optional leading article) (golint)
    • Line 1091: warning: exported method DeleteUser200Response.StatusCode should have comment or be unexported (golint)
    • Line 1101: warning: comment on exported type DeleteUser403Response should be of the form "DeleteUser403Response ..." (with optional leading article) (golint)
    • Line 1106: warning: exported method DeleteUser403Response.StatusCode should have comment or be unexported (golint)
    • Line 1116: warning: comment on exported type DeleteUser404Response should be of the form "DeleteUser404Response ..." (with optional leading article) (golint)
    • Line 1121: warning: exported method DeleteUser404Response.StatusCode should have comment or be unexported (golint)
    • Line 1131: warning: exported type GetUserRequest should have comment or be unexported (golint)
    • Line 1137: warning: exported type GetUserResponse should have comment or be unexported (golint)
    • Line 1143: warning: comment on exported type GetUser200Response should be of the form "GetUser200Response ..." (with optional leading article) (golint)
    • Line 1150: warning: exported method GetUser200Response.StatusCode should have comment or be unexported (golint)
    • Line 1161: warning: comment on exported type GetUser403Response should be of the form "GetUser403Response ..." (with optional leading article) (golint)
    • Line 1166: warning: exported method GetUser403Response.StatusCode should have comment or be unexported (golint)
    • Line 1176: warning: comment on exported type GetUser404Response should be of the form "GetUser404Response ..." (with optional leading article) (golint)
    • Line 1181: warning: exported method GetUser404Response.StatusCode should have comment or be unexported (golint)
    • Line 1191: warning: exported type CreateOrUpdateUserRequest should have comment or be unexported (golint)
    • Line 1198: warning: exported type CreateOrUpdateUserResponse should have comment or be unexported (golint)
    • Line 1204: warning: comment on exported type CreateOrUpdateUser200Response should be of the form "CreateOrUpdateUser200Response ..." (with optional leading article) (golint)
    • Line 1209: warning: exported method CreateOrUpdateUser200Response.StatusCode should have comment or be unexported (golint)
    • Line 1219: warning: comment on exported type CreateOrUpdateUser201Response should be of the form "CreateOrUpdateUser201Response ..." (with optional leading article) (golint)
    • Line 1224: warning: exported method CreateOrUpdateUser201Response.StatusCode should have comment or be unexported (golint)
    • Line 1234: warning: comment on exported type CreateOrUpdateUser400Response should be of the form "CreateOrUpdateUser400Response ..." (with optional leading article) (golint)
    • Line 1239: warning: exported method CreateOrUpdateUser400Response.StatusCode should have comment or be unexported (golint)
    • Line 1249: warning: comment on exported type CreateOrUpdateUser403Response should be of the form "CreateOrUpdateUser403Response ..." (with optional leading article) (golint)
    • Line 1254: warning: exported method CreateOrUpdateUser403Response.StatusCode should have comment or be unexported (golint)
    • Line 1264: warning: comment on exported type CreateOrUpdateUser405Response should be of the form "CreateOrUpdateUser405Response ..." (with optional leading article) (golint)
    • Line 1269: warning: exported method CreateOrUpdateUser405Response.StatusCode should have comment or be unexported (golint)
    • Line 1279: warning: exported type GetBookingRequest should have comment or be unexported (golint)
    • Line 1283: warning: exported type GetBookingResponse should have comment or be unexported (golint)
    • Line 1289: warning: comment on exported type GetBooking200Response should be of the form "GetBooking200Response ..." (with optional leading article) (golint)
    • Line 1296: warning: exported method GetBooking200Response.StatusCode should have comment or be unexported (golint)
    • Line 1307: warning: comment on exported type GetBooking400Response should be of the form "GetBooking400Response ..." (with optional leading article) (golint)
    • Line 1312: warning: exported method GetBooking400Response.StatusCode should have comment or be unexported (golint)
    • Line 1322: warning: comment on exported type GetBooking401Response should be of the form "GetBooking401Response ..." (with optional leading article) (golint)
    • Line 1327: warning: exported method GetBooking401Response.StatusCode should have comment or be unexported (golint)
    • Line 1337: warning: comment on exported type GetBooking404Response should be of the form "GetBooking404Response ..." (with optional leading article) (golint)
    • Line 1342: warning: exported method GetBooking404Response.StatusCode should have comment or be unexported (golint)
    • Line 1352: warning: comment on exported type GetBooking500Response should be of the form "GetBooking500Response ..." (with optional leading article) (golint)
    • Line 1357: warning: exported method GetBooking500Response.StatusCode should have comment or be unexported (golint)
    • Line 1367: warning: exported type GetBookingsRequest should have comment or be unexported (golint)
    • Line 1373: warning: exported type GetBookingsResponse should have comment or be unexported (golint)
    • Line 1379: warning: comment on exported type GetBookings200Response should be of the form "GetBookings200Response ..." (with optional leading article) (golint)
    • Line 1386: warning: exported method GetBookings200Response.StatusCode should have comment or be unexported (golint)
    • Line 1397: warning: comment on exported type GetBookings400Response should be of the form "GetBookings400Response ..." (with optional leading article) (golint)
    • Line 1402: warning: exported method GetBookings400Response.StatusCode should have comment or be unexported (golint)
    • Line 1412: warning: comment on exported type GetBookings401Response should be of the form "GetBookings401Response ..." (with optional leading article) (golint)
    • Line 1417: warning: exported method GetBookings401Response.StatusCode should have comment or be unexported (golint)
    • Line 1427: warning: comment on exported type GetBookings404Response should be of the form "GetBookings404Response ..." (with optional leading article) (golint)
    • Line 1432: warning: exported method GetBookings404Response.StatusCode should have comment or be unexported (golint)
    • Line 1442: warning: comment on exported type GetBookings500Response should be of the form "GetBookings500Response ..." (with optional leading article) (golint)
    • Line 1447: warning: exported method GetBookings500Response.StatusCode should have comment or be unexported (golint)
    • Line 1457: warning: exported type ListModelsRequest should have comment or be unexported (golint)
    • Line 1466: warning: exported type ListModelsResponse should have comment or be unexported (golint)
    • Line 1472: warning: comment on exported type ListModels200Response should be of the form "ListModels200Response ..." (with optional leading article) (golint)
    • Line 1479: warning: exported method ListModels200Response.StatusCode should have comment or be unexported (golint)
    • Line 1490: warning: exported type GetClassesRequest should have comment or be unexported (golint)
    • Line 1495: warning: exported type GetClassesResponse should have comment or be unexported (golint)
    • Line 1501: warning: comment on exported type GetClasses200Response should be of the form "GetClasses200Response ..." (with optional leading article) (golint)
    • Line 1508: warning: exported method GetClasses200Response.StatusCode should have comment or be unexported (golint)
    • Line 1519: warning: comment on exported type GetClasses400Response should be of the form "GetClasses400Response ..." (with optional leading article) (golint)
    • Line 1526: warning: exported method GetClasses400Response.StatusCode should have comment or be unexported (golint)
    • Line 1537: warning: exported type CodeRequest should have comment or be unexported (golint)
    • Line 1544: warning: exported type CodeResponse should have comment or be unexported (golint)
    • Line 1550: warning: comment on exported type Code200Response should be of the form "Code200Response ..." (with optional leading article) (golint)
    • Line 1557: warning: exported method Code200Response.StatusCode should have comment or be unexported (golint)
    • Line 1568: warning: comment on exported type Code400Response should be of the form "Code400Response ..." (with optional leading article) (golint)
    • Line 1573: warning: exported method Code400Response.StatusCode should have comment or be unexported (golint)
    • Line 1583: warning: comment on exported type Code401Response should be of the form "Code401Response ..." (with optional leading article) (golint)
    • Line 1588: warning: exported method Code401Response.StatusCode should have comment or be unexported (golint)
    • Line 1598: warning: comment on exported type Code404Response should be of the form "Code404Response ..." (with optional leading article) (golint)
    • Line 1603: warning: exported method Code404Response.StatusCode should have comment or be unexported (golint)
    • Line 1613: warning: comment on exported type Code500Response should be of the form "Code500Response ..." (with optional leading article) (golint)
    • Line 1618: warning: exported method Code500Response.StatusCode should have comment or be unexported (golint)
    • Line 1628: warning: exported type DeleteCustomerSessionRequest should have comment or be unexported (golint)
    • Line 1633: warning: exported type DeleteCustomerSessionResponse should have comment or be unexported (golint)
    • Line 1639: warning: comment on exported type DeleteCustomerSession204Response should be of the form "DeleteCustomerSession204Response ..." (with optional leading article) (golint)
    • Line 1644: warning: exported method DeleteCustomerSession204Response.StatusCode should have comment or be unexported (golint)
    • Line 1654: warning: comment on exported type DeleteCustomerSession401Response should be of the form "DeleteCustomerSession401Response ..." (with optional leading article) (golint)
    • Line 1659: warning: exported method DeleteCustomerSession401Response.StatusCode should have comment or be unexported (golint)
    • Line 1669: warning: comment on exported type DeleteCustomerSession500Response should be of the form "DeleteCustomerSession500Response ..." (with optional leading article) (golint)
    • Line 1674: warning: exported method DeleteCustomerSession500Response.StatusCode should have comment or be unexported (golint)
    • Line 1684: warning: exported type CreateCustomerSessionRequest should have comment or be unexported (golint)
    • Line 1690: warning: exported type CreateCustomerSessionResponse should have comment or be unexported (golint)
    • Line 1696: warning: comment on exported type CreateCustomerSession201Response should be of the form "CreateCustomerSession201Response ..." (with optional leading article) (golint)
    • Line 1703: warning: exported method CreateCustomerSession201Response.StatusCode should have comment or be unexported (golint)
    • Line 1714: warning: comment on exported type CreateCustomerSession401Response should be of the form "CreateCustomerSession401Response ..." (with optional leading article) (golint)
    • Line 1719: warning: exported method CreateCustomerSession401Response.StatusCode should have comment or be unexported (golint)
    • Line 1729: warning: comment on exported type CreateCustomerSession403Response should be of the form "CreateCustomerSession403Response ..." (with optional leading article) (golint)
    • Line 1736: warning: exported method CreateCustomerSession403Response.StatusCode should have comment or be unexported (golint)
    • Line 1746: warning: comment on exported type CreateCustomerSession422Response should be of the form "CreateCustomerSession422Response ..." (with optional leading article) (golint)
    • Line 1753: warning: exported method CreateCustomerSession422Response.StatusCode should have comment or be unexported (golint)
    • Line 1764: warning: comment on exported type CreateCustomerSession500Response should be of the form "CreateCustomerSession500Response ..." (with optional leading article) (golint)
    • Line 1769: warning: exported method CreateCustomerSession500Response.StatusCode should have comment or be unexported (golint)
    • Line 1779: warning: exported type DownloadNestedFileRequest should have comment or be unexported (golint)
    • Line 1781: warning: exported type DownloadNestedFileResponse should have comment or be unexported (golint)
    • Line 1787: warning: comment on exported type DownloadNestedFile200Response should be of the form "DownloadNestedFile200Response ..." (with optional leading article) (golint)
    • Line 1794: warning: exported method DownloadNestedFile200Response.StatusCode should have comment or be unexported (golint)
    • Line 1805: warning: exported type DownloadImageRequest should have comment or be unexported (golint)
    • Line 1809: warning: exported type DownloadImageResponse should have comment or be unexported (golint)
    • Line 1815: warning: comment on exported type DownloadImage200Response should be of the form "DownloadImage200Response ..." (with optional leading article) (golint)
    • Line 1823: warning: exported method DownloadImage200Response.StatusCode should have comment or be unexported (golint)
    • Line 1838: warning: comment on exported type DownloadImage500Response should be of the form "DownloadImage500Response ..." (with optional leading article) (golint)
    • Line 1843: warning: exported method DownloadImage500Response.StatusCode should have comment or be unexported (golint)
    • Line 1853: warning: exported type ListElementsRequest should have comment or be unexported (golint)
    • Line 1858: warning: exported type ListElementsResponse should have comment or be unexported (golint)
    • Line 1864: warning: comment on exported type ListElements200Response should be of the form "ListElements200Response ..." (with optional leading article) (golint)
    • Line 1872: warning: exported method ListElements200Response.StatusCode should have comment or be unexported (golint)
    • Line 1884: warning: comment on exported type ListElements500Response should be of the form "ListElements500Response ..." (with optional leading article) (golint)
    • Line 1889: warning: exported method ListElements500Response.StatusCode should have comment or be unexported (golint)
    • Line 1899: warning: exported type FileUploadRequestFormData should have comment or be unexported (golint)
    • Line 1903: warning: exported type FileUploadRequest should have comment or be unexported (golint)
    • Line 1907: warning: exported type FileUploadResponse should have comment or be unexported (golint)
    • Line 1913: warning: comment on exported type FileUpload204Response should be of the form "FileUpload204Response ..." (with optional leading article) (golint)
    • Line 1918: warning: exported method FileUpload204Response.StatusCode should have comment or be unexported (golint)
    • Line 1928: warning: comment on exported type FileUpload500Response should be of the form "FileUpload500Response ..." (with optional leading article) (golint)
    • Line 1933: warning: exported method FileUpload500Response.StatusCode should have comment or be unexported (golint)
    • Line 1943: warning: exported type DownloadFileRequest should have comment or be unexported (golint)
    • Line 1947: warning: exported type DownloadFileResponse should have comment or be unexported (golint)
    • Line 1953: warning: comment on exported type DownloadFile200Response should be of the form "DownloadFile200Response ..." (with optional leading article) (golint)
    • Line 1961: warning: exported method DownloadFile200Response.StatusCode should have comment or be unexported (golint)
    • Line 1972: warning: exported type GenericFileDownloadRequest should have comment or be unexported (golint)
    • Line 1976: warning: exported type GenericFileDownloadResponse should have comment or be unexported (golint)
    • Line 1982: warning: comment on exported type GenericFileDownload200Response should be of the form "GenericFileDownload200Response ..." (with optional leading article) (golint)
    • Line 1991: warning: exported method GenericFileDownload200Response.StatusCode should have comment or be unexported (golint)
    • Line 2007: warning: comment on exported type GenericFileDownload500Response should be of the form "GenericFileDownload500Response ..." (with optional leading article) (golint)
    • Line 2012: warning: exported method GenericFileDownload500Response.StatusCode should have comment or be unexported (golint)
    • Line 2022: warning: exported type GetRentalRequest should have comment or be unexported (golint)
    • Line 2026: warning: exported type GetRentalResponse should have comment or be unexported (golint)
    • Line 2032: warning: comment on exported type GetRental200Response should be of the form "GetRental200Response ..." (with optional leading article) (golint)
    • Line 2037: warning: exported method GetRental200Response.StatusCode should have comment or be unexported (golint)
    • Line 2047: warning: comment on exported type GetRental400Response should be of the form "GetRental400Response ..." (with optional leading article) (golint)
    • Line 2054: warning: exported method GetRental400Response.StatusCode should have comment or be unexported (golint)
    • Line 2065: warning: exported type GetShoesRequest should have comment or be unexported (golint)
    • Line 2067: warning: exported type GetShoesResponse should have comment or be unexported (golint)
    • Line 2073: warning: comment on exported type GetShoes200Response should be of the form "GetShoes200Response ..." (with optional leading article) (golint)
    • Line 2080: warning: exported method GetShoes200Response.StatusCode should have comment or be unexported (golint)
    • Line 2091: warning: exported type PostUploadRequestFormData should have comment or be unexported (golint)
    • Line 2096: warning: exported type PostUploadRequest should have comment or be unexported (golint)
    • Line 2100: warning: exported type PostUploadResponse should have comment or be unexported (golint)
    • Line 2106: warning: comment on exported type PostUpload200Response should be of the form "PostUpload200Response ..." (with optional leading article) (golint)
    • Line 2111: warning: exported method PostUpload200Response.StatusCode should have comment or be unexported (golint)
    • Line 2121: warning: comment on exported type PostUpload500Response should be of the form "PostUpload500Response ..." (with optional leading article) (golint)
    • Line 2126: warning: exported method PostUpload500Response.StatusCode 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!


misspell95%

Misspell Finds commonly misspelled English words

    • apikit/internal/framework/xhttp/content_type_test.go
    • Line 13: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 18: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 23: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 28: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 33: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 53: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 64: warning: "ouput" is a misspelling of "output" (misspell)
    • Line 75: warning: "ouput" is a misspelling of "output" (misspell)
    • apikit/generator/types/types.go
    • Line 55: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 58: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 73: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 73: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 83: warning: "composit" is a misspelling of "compost" (misspell)
    • Line 83: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 86: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 86: warning: "composit" is a misspelling of "compost" (misspell)
    • apikit/generator/types/types_test.go
    • Line 11: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 63: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 93: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 138: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 160: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 183: warning: "Composit" is a misspelling of "Compost" (misspell)
    • Line 205: warning: "Composit" is a misspelling of "Compost" (misspell)