Preparing report...

Report for github.com/sergeyglazyrindev/go-monolith

(v0.0.0-20211219135950-dbba8356b1f7)

A    Great!    Found 105 issues across 159 files

Tweet

gofmt94%

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!


gocyclo90%

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.

    • migrate.go
    • Line 79: warning: cyclomatic complexity 30 of function (CreateMigration).Proceed() is high (> 15) (gocyclo)
    • core/gorm_persistence_storage.go
    • Line 676: warning: cyclomatic complexity 24 of function (*GormAdminFilterObjects).Search() is high (> 15) (gocyclo)
    • Line 16: warning: cyclomatic complexity 22 of function NewGormAdminPage() is high (> 15) (gocyclo)
    • core/reflect_helpers.go
    • Line 13: warning: cyclomatic complexity 24 of function SetUpStructField() is high (> 15) (gocyclo)
    • Line 320: warning: cyclomatic complexity 20 of function TransformValueForListDisplay() is high (> 15) (gocyclo)
    • Line 157: warning: cyclomatic complexity 18 of function TransformValueForWidget() is high (> 15) (gocyclo)
    • Line 265: warning: cyclomatic complexity 17 of function TransformValueForOperator() is high (> 15) (gocyclo)
    • Line 85: warning: cyclomatic complexity 17 of function GetGoMonolithFieldTypeFromGormField() is high (> 15) (gocyclo)
    • Line 214: warning: cyclomatic complexity 16 of function TransformDateTimeValueForWidget() is high (> 15) (gocyclo)
    • utils/admin.go
    • Line 43: warning: cyclomatic complexity 18 of function IsLocal() is high (> 15) (gocyclo)
    • core/form.go
    • Line 208: warning: cyclomatic complexity 17 of function (*Form).ProceedRequest() is high (> 15) (gocyclo)
    • core/form_widget.go
    • Line 2842: warning: cyclomatic complexity 28 of function GetWidgetFromFieldTypeAndGormField() is high (> 15) (gocyclo)
    • Line 2603: warning: cyclomatic complexity 26 of function (*SelectDateWidget).Render() is high (> 15) (gocyclo)
    • Line 90: warning: cyclomatic complexity 23 of function GetWidgetByWidgetType() is high (> 15) (gocyclo)
    • test.go
    • Line 83: warning: cyclomatic complexity 24 of function RunTests() is high (> 15) (gocyclo)

golint38%

Golint is a linter for Go source code.

    • core/admin_paginator.go
    • Line 3: warning: exported type AdminRequestPaginator should have comment or be unexported (golint)
    • Line 8: warning: exported type PaginationType should have comment or be unexported (golint)
    • Line 10: warning: exported var LimitPaginationType should have comment or be unexported (golint)
    • Line 11: warning: exported var CursorPaginationType should have comment or be unexported (golint)
    • Line 13: warning: exported type Paginator should have comment or be unexported (golint)
    • Line 24: warning: exported method Paginator.Paginate should have comment or be unexported (golint)
    • core/db_interfaces.go
    • Line 8: warning: exported type DeleteRowStructure should have comment or be unexported (golint)
    • Line 16: warning: exported type IDbAdapter should have comment or be unexported (golint)
    • Line 59: warning: exported var Db should have comment or be unexported (golint)
    • Line 61: warning: exported type ProjectDatabase should have comment or be unexported (golint)
    • Line 66: warning: exported method ProjectDatabase.Close should have comment or be unexported (golint)
    • Line 70: warning: exported method ProjectDatabase.ForcefullyClose should have comment or be unexported (golint)
    • Line 75: warning: exported var TestInstanceDatabase should have comment or be unexported (golint)
    • Line 77: warning: exported function NewDatabaseInstance should have comment or be unexported (golint)
    • Line 94: warning: exported function NewDatabaseInstanceWithoutConnection should have comment or be unexported (golint)
    • Line 111: warning: exported type Database should have comment or be unexported (golint)
    • Line 116: warning: exported function NewDatabase should have comment or be unexported (golint)
    • Line 123: warning: exported method Database.ConnectTo should have comment or be unexported (golint)
    • Line 130: warning: exported type DatabaseSettings should have comment or be unexported (golint)
    • Line 135: warning: exported var CurrentDatabaseSettings should have comment or be unexported (golint)
    • Line 159: warning: exported function GetAdapterForDb should have comment or be unexported (golint)
    • Line 175: warning: exported type DbAdapterRegistry should have comment or be unexported (golint)
    • Line 179: warning: exported method DbAdapterRegistry.RegisterAdapter should have comment or be unexported (golint)
    • Line 183: warning: exported var GlobalDbAdapterRegistry should have comment or be unexported (golint)
    • Line 185: warning: exported function InitializeGlobalAdapterRegistry should have comment or be unexported (golint)
    • Line 193: warning: exported function NewDbAdapter should have comment or be unexported (golint)
    • core/object_query_builder.go
    • Line 12: warning: exported type GormOperatorContext should have comment or be unexported (golint)
    • Line 20: warning: exported type IRegisterDbHandler should have comment or be unexported (golint)
    • Line 24: warning: exported type IGormOperator should have comment or be unexported (golint)
    • Line 31: warning: exported type ExactGormOperator should have comment or be unexported (golint)
    • Line 34: warning: exported method ExactGormOperator.GetName should have comment or be unexported (golint)
    • Line 38: warning: exported method ExactGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 42: warning: exported method ExactGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 46: warning: exported method ExactGormOperator.Build should have comment or be unexported (golint)
    • Line 52: warning: exported type IExactGormOperator should have comment or be unexported (golint)
    • Line 55: warning: exported method IExactGormOperator.GetName should have comment or be unexported (golint)
    • Line 59: warning: exported method IExactGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 63: warning: exported method IExactGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 67: warning: exported method IExactGormOperator.Build should have comment or be unexported (golint)
    • Line 73: warning: exported type ContainsGormOperator should have comment or be unexported (golint)
    • Line 76: warning: exported method ContainsGormOperator.GetName should have comment or be unexported (golint)
    • Line 80: warning: exported method ContainsGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 84: warning: exported method ContainsGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 88: warning: exported method ContainsGormOperator.Build should have comment or be unexported (golint)
    • Line 93: warning: exported type IContainsGormOperator should have comment or be unexported (golint)
    • Line 96: warning: exported method IContainsGormOperator.GetName should have comment or be unexported (golint)
    • Line 100: warning: exported method IContainsGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 104: warning: exported method IContainsGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 108: warning: exported method IContainsGormOperator.Build should have comment or be unexported (golint)
    • Line 113: warning: exported type InGormOperator should have comment or be unexported (golint)
    • Line 116: warning: exported method InGormOperator.GetName should have comment or be unexported (golint)
    • Line 120: warning: exported method InGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 124: warning: exported method InGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 128: warning: exported method InGormOperator.Build should have comment or be unexported (golint)
    • Line 133: warning: exported type GtGormOperator should have comment or be unexported (golint)
    • Line 136: warning: exported method GtGormOperator.GetName should have comment or be unexported (golint)
    • Line 140: warning: exported method GtGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 144: warning: exported method GtGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 148: warning: exported method GtGormOperator.Build should have comment or be unexported (golint)
    • Line 153: warning: exported type GteGormOperator should have comment or be unexported (golint)
    • Line 156: warning: exported method GteGormOperator.GetName should have comment or be unexported (golint)
    • Line 160: warning: exported method GteGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 164: warning: exported method GteGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 168: warning: exported method GteGormOperator.Build should have comment or be unexported (golint)
    • Line 173: warning: exported type LtGormOperator should have comment or be unexported (golint)
    • Line 176: warning: exported method LtGormOperator.GetName should have comment or be unexported (golint)
    • Line 180: warning: exported method LtGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 184: warning: exported method LtGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 188: warning: exported method LtGormOperator.Build should have comment or be unexported (golint)
    • Line 193: warning: exported type LteGormOperator should have comment or be unexported (golint)
    • Line 196: warning: exported method LteGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 200: warning: exported method LteGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 204: warning: exported method LteGormOperator.GetName should have comment or be unexported (golint)
    • Line 208: warning: exported method LteGormOperator.Build should have comment or be unexported (golint)
    • Line 213: warning: exported type StartsWithGormOperator should have comment or be unexported (golint)
    • Line 216: warning: exported method StartsWithGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 220: warning: exported method StartsWithGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 224: warning: exported method StartsWithGormOperator.GetName should have comment or be unexported (golint)
    • Line 228: warning: exported method StartsWithGormOperator.Build should have comment or be unexported (golint)
    • Line 233: warning: exported type IStartsWithGormOperator should have comment or be unexported (golint)
    • Line 236: warning: exported method IStartsWithGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 240: warning: exported method IStartsWithGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 244: warning: exported method IStartsWithGormOperator.GetName should have comment or be unexported (golint)
    • Line 248: warning: exported method IStartsWithGormOperator.Build should have comment or be unexported (golint)
    • Line 253: warning: exported type EndsWithGormOperator should have comment or be unexported (golint)
    • Line 256: warning: exported method EndsWithGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 260: warning: exported method EndsWithGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 264: warning: exported method EndsWithGormOperator.GetName should have comment or be unexported (golint)
    • Line 268: warning: exported method EndsWithGormOperator.Build should have comment or be unexported (golint)
    • Line 273: warning: exported type IEndsWithGormOperator should have comment or be unexported (golint)
    • Line 276: warning: exported method IEndsWithGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 280: warning: exported method IEndsWithGormOperator.GetName should have comment or be unexported (golint)
    • Line 284: warning: exported method IEndsWithGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 288: warning: exported method IEndsWithGormOperator.Build should have comment or be unexported (golint)
    • Line 293: warning: exported type RangeGormOperator should have comment or be unexported (golint)
    • Line 296: warning: exported method RangeGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 300: warning: exported method RangeGormOperator.GetName should have comment or be unexported (golint)
    • Line 304: warning: exported method RangeGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 308: warning: exported method RangeGormOperator.Build should have comment or be unexported (golint)
    • Line 313: warning: exported type DateGormOperator should have comment or be unexported (golint)
    • Line 316: warning: exported method DateGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 320: warning: exported method DateGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 324: warning: exported method DateGormOperator.GetName should have comment or be unexported (golint)
    • Line 328: warning: exported method DateGormOperator.Build should have comment or be unexported (golint)
    • Line 333: warning: exported type YearGormOperator should have comment or be unexported (golint)
    • Line 336: warning: exported method YearGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 340: warning: exported method YearGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 344: warning: exported method YearGormOperator.GetName should have comment or be unexported (golint)
    • Line 348: warning: exported method YearGormOperator.Build should have comment or be unexported (golint)
    • Line 353: warning: exported type MonthGormOperator should have comment or be unexported (golint)
    • Line 356: warning: exported method MonthGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 360: warning: exported method MonthGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 364: warning: exported method MonthGormOperator.GetName should have comment or be unexported (golint)
    • Line 368: warning: exported method MonthGormOperator.Build should have comment or be unexported (golint)
    • Line 373: warning: exported type DayGormOperator should have comment or be unexported (golint)
    • Line 376: warning: exported method DayGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 380: warning: exported method DayGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 384: warning: exported method DayGormOperator.GetName should have comment or be unexported (golint)
    • Line 388: warning: exported method DayGormOperator.Build should have comment or be unexported (golint)
    • Line 393: warning: exported type WeekGormOperator should have comment or be unexported (golint)
    • Line 396: warning: exported method WeekGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 400: warning: exported method WeekGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 404: warning: exported method WeekGormOperator.GetName should have comment or be unexported (golint)
    • Line 408: warning: exported method WeekGormOperator.Build should have comment or be unexported (golint)
    • Line 413: warning: exported type WeekDayGormOperator should have comment or be unexported (golint)
    • Line 416: warning: exported method WeekDayGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 420: warning: exported method WeekDayGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 424: warning: exported method WeekDayGormOperator.GetName should have comment or be unexported (golint)
    • Line 428: warning: exported method WeekDayGormOperator.Build should have comment or be unexported (golint)
    • Line 433: warning: exported type QuarterGormOperator should have comment or be unexported (golint)
    • Line 436: warning: exported method QuarterGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 440: warning: exported method QuarterGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 444: warning: exported method QuarterGormOperator.GetName should have comment or be unexported (golint)
    • Line 448: warning: exported method QuarterGormOperator.Build should have comment or be unexported (golint)
    • Line 453: warning: exported type TimeGormOperator should have comment or be unexported (golint)
    • Line 456: warning: exported method TimeGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 460: warning: exported method TimeGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 464: warning: exported method TimeGormOperator.GetName should have comment or be unexported (golint)
    • Line 468: warning: exported method TimeGormOperator.Build should have comment or be unexported (golint)
    • Line 473: warning: exported type HourGormOperator should have comment or be unexported (golint)
    • Line 476: warning: exported method HourGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 480: warning: exported method HourGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 484: warning: exported method HourGormOperator.GetName should have comment or be unexported (golint)
    • Line 488: warning: exported method HourGormOperator.Build should have comment or be unexported (golint)
    • Line 493: warning: exported type MinuteGormOperator should have comment or be unexported (golint)
    • Line 496: warning: exported method MinuteGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 500: warning: exported method MinuteGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 504: warning: exported method MinuteGormOperator.GetName should have comment or be unexported (golint)
    • Line 508: warning: exported method MinuteGormOperator.Build should have comment or be unexported (golint)
    • Line 513: warning: exported type SecondGormOperator should have comment or be unexported (golint)
    • Line 516: warning: exported method SecondGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 520: warning: exported method SecondGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 524: warning: exported method SecondGormOperator.GetName should have comment or be unexported (golint)
    • Line 528: warning: exported method SecondGormOperator.Build should have comment or be unexported (golint)
    • Line 533: warning: exported type IsNullGormOperator should have comment or be unexported (golint)
    • Line 536: warning: exported method IsNullGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 541: warning: exported method IsNullGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 545: warning: exported method IsNullGormOperator.GetName should have comment or be unexported (golint)
    • Line 549: warning: exported method IsNullGormOperator.Build should have comment or be unexported (golint)
    • Line 554: warning: exported type RegexGormOperator should have comment or be unexported (golint)
    • Line 557: warning: exported method RegexGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 561: warning: exported method RegexGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 565: warning: exported method RegexGormOperator.GetName should have comment or be unexported (golint)
    • Line 569: warning: exported method RegexGormOperator.Build should have comment or be unexported (golint)
    • Line 574: warning: exported type IRegexGormOperator should have comment or be unexported (golint)
    • Line 577: warning: exported method IRegexGormOperator.TransformValue should have comment or be unexported (golint)
    • Line 581: warning: exported method IRegexGormOperator.RegisterDbHandlers should have comment or be unexported (golint)
    • Line 585: warning: exported method IRegexGormOperator.GetName should have comment or be unexported (golint)
    • Line 589: warning: exported method IRegexGormOperator.Build should have comment or be unexported (golint)
    • Line 594: warning: exported type GormOperatorRegistry should have comment or be unexported (golint)
    • Line 598: warning: exported method GormOperatorRegistry.RegisterOperator should have comment or be unexported (golint)
    • Line 602: warning: exported method GormOperatorRegistry.GetOperatorByName should have comment or be unexported (golint)
    • Line 610: warning: exported method GormOperatorRegistry.GetAll should have comment or be unexported (golint)
    • Line 621: warning: exported type GormQueryBuilder should have comment or be unexported (golint)
    • Line 627: warning: exported var ProjectGormOperatorRegistry should have comment or be unexported (golint)
    • Line 663: warning: exported function NewGormOperatorContext should have comment or be unexported (golint)
    • Line 673: warning: exported function FilterGormModel should have comment or be unexported (golint)
    • Line 726: warning: exported type ISQLConditionBuilder should have comment or be unexported (golint)
    • Line 730: warning: exported type SQLConditionBuilder should have comment or be unexported (golint)
    • Line 734: warning: exported method SQLConditionBuilder.Build should have comment or be unexported (golint)
    • Line 741: warning: exported function NewSQLConditionBuilder should have comment or be unexported (golint)
    • core/validator_interfaces.go
    • Line 5: warning: exported type IValidator should have comment or be unexported (golint)
    • Line 7: warning: exported type ValidatorRegistry should have comment or be unexported (golint)
    • Line 11: warning: exported function NewValidatorRegistry should have comment or be unexported (golint)
    • Line 17: warning: exported method ValidatorRegistry.AddValidator should have comment or be unexported (golint)
    • Line 26: warning: exported method ValidatorRegistry.GetValidator should have comment or be unexported (golint)
    • Line 34: warning: exported method ValidatorRegistry.GetAllValidators should have comment or be unexported (golint)
    • Line 48: warning: exported var GoMonolithValidatorRegistry should have comment or be unexported (golint)
    • core/admin_list_display.go
    • Line 13: warning: exported type ListDisplayRegistry should have comment or be unexported (golint)
    • Line 20: warning: exported method ListDisplayRegistry.GetFieldsCount should have comment or be unexported (golint)
    • Line 24: warning: exported method ListDisplayRegistry.SetPrefix should have comment or be unexported (golint)
    • Line 31: warning: exported method ListDisplayRegistry.ClearAllFields should have comment or be unexported (golint)
    • Line 36: warning: exported method ListDisplayRegistry.IsThereAnyEditable should have comment or be unexported (golint)
    • Line 44: warning: exported method ListDisplayRegistry.AddField should have comment or be unexported (golint)
    • Line 50: warning: exported method ListDisplayRegistry.BuildFormForListEditable should have comment or be unexported (golint)
    • Line 55: warning: exported method ListDisplayRegistry.BuildListEditableFormForNewModel should have comment or be unexported (golint)
    • Line 60: warning: exported method ListDisplayRegistry.GetAllFields should have comment or be unexported (golint)
    • Line 81: warning: exported method ListDisplayRegistry.GetFieldByDisplayName should have comment or be unexported (golint)
    • Line 89: warning: exported method ListDisplayRegistry.RemoveFieldByName should have comment or be unexported (golint)
    • Line 93: warning: exported type ListDisplay should have comment or be unexported (golint)
    • Line 105: warning: exported method ListDisplay.SetPrefix should have comment or be unexported (golint)
    • Line 109: warning: exported method ListDisplay.GetOrderingName should have comment or be unexported (golint)
    • Line 127: warning: exported method ListDisplay.IsEligibleForOrdering should have comment or be unexported (golint)
    • Line 131: warning: exported method ListDisplay.GetValue should have comment or be unexported (golint)
    • Line 156: warning: exported function NewListDisplay should have comment or be unexported (golint)
    • Line 167: warning: exported function NewListDisplayRegistryFromGormModelForInlines should have comment or be unexported (golint)
    • Line 190: warning: exported function NewListDisplayRegistryFromGormModel should have comment or be unexported (golint)
    • blueprint/approval/approval.go
    • Line 17: warning: exported type Blueprint should have comment or be unexported (golint)
    • Line 21: warning: exported method Blueprint.InitRouter should have comment or be unexported (golint)
    • Line 103: warning: exported method Blueprint.InitApp should have comment or be unexported (golint)
    • Line 107: warning: exported var ConcreteBlueprint should have comment or be unexported (golint)
    • core/admin_dashboard_panel.go
    • Line 14: warning: exported type DashboardAdminPanel should have comment or be unexported (golint)
    • Line 19: warning: exported type AutocompleteItemResponse should have comment or be unexported (golint)
    • Line 24: warning: exported method DashboardAdminPanel.FindPageForGormModel should have comment or be unexported (golint)
    • Line 37: warning: exported method DashboardAdminPanel.RegisterHTTPHandlers should have comment or be unexported (golint)
    • Line 403: warning: exported var CurrentDashboardAdminPanel should have comment or be unexported (golint)
    • Line 405: warning: exported function NewDashboardAdminPanel should have comment or be unexported (golint)
    • Line 413: warning: exported var AddedObjectInPopup should have comment or be unexported (golint)
    • core/admin_filter_objects.go
    • Line 3: warning: exported type IAdminFilterObjects should have comment or be unexported (golint)
    • Line 27: warning: exported type IterateAdminObjects should have comment or be unexported (golint)
    • core/session_core_models.go
    • Line 10: warning: exported type Session should have comment or be unexported (golint)
    • Line 30: warning: comment on exported method Session.GenerateKey should be of the form "GenerateKey ..." (golint)
    • Line 60: warning: exported method Session.GetData should have comment or be unexported (golint)
    • Line 71: warning: exported method Session.ClearAll should have comment or be unexported (golint)
    • Line 76: warning: exported method Session.BeforeSave should have comment or be unexported (golint)
    • Line 89: warning: exported method Session.AfterFind should have comment or be unexported (golint)
    • Line 100: warning: exported method Session.SetData should have comment or be unexported (golint)
    • Line 113: warning: exported function LoadSessions should have comment or be unexported (golint)
    • Line 126: warning: exported type ISessionProvider should have comment or be unexported (golint)
    • core/sqlite_adapter.go
    • Line 20: warning: exported type SqliteAdapter should have comment or be unexported (golint)
    • Line 26: warning: exported method SqliteAdapter.Equals should have comment or be unexported (golint)
    • Line 31: warning: exported method SqliteAdapter.GetStringToExtractYearFromField should have comment or be unexported (golint)
    • Line 35: warning: exported method SqliteAdapter.GetStringToExtractMonthFromField should have comment or be unexported (golint)
    • Line 39: warning: comment on exported method SqliteAdapter.GetDb should be of the form "GetDb ..." (golint)
    • Line 71: warning: exported method SqliteAdapter.Exact should have comment or be unexported (golint)
    • Line 77: warning: exported method SqliteAdapter.IExact should have comment or be unexported (golint)
    • Line 83: warning: exported method SqliteAdapter.Contains should have comment or be unexported (golint)
    • Line 89: warning: exported method SqliteAdapter.IContains should have comment or be unexported (golint)
    • Line 95: warning: exported method SqliteAdapter.In should have comment or be unexported (golint)
    • Line 101: warning: exported method SqliteAdapter.Gt should have comment or be unexported (golint)
    • Line 107: warning: exported method SqliteAdapter.Gte should have comment or be unexported (golint)
    • Line 113: warning: exported method SqliteAdapter.Lt should have comment or be unexported (golint)
    • Line 119: warning: exported method SqliteAdapter.Lte should have comment or be unexported (golint)
    • Line 125: warning: exported method SqliteAdapter.StartsWith should have comment or be unexported (golint)
    • Line 131: warning: exported method SqliteAdapter.IStartsWith should have comment or be unexported (golint)
    • Line 137: warning: exported method SqliteAdapter.EndsWith should have comment or be unexported (golint)
    • Line 143: warning: exported method SqliteAdapter.IEndsWith should have comment or be unexported (golint)
    • Line 149: warning: exported method SqliteAdapter.Date should have comment or be unexported (golint)
    • Line 155: warning: exported method SqliteAdapter.Year should have comment or be unexported (golint)
    • Line 163: warning: exported method SqliteAdapter.Month should have comment or be unexported (golint)
    • Line 169: warning: exported method SqliteAdapter.Day should have comment or be unexported (golint)
    • Line 175: warning: exported method SqliteAdapter.Week should have comment or be unexported (golint)
    • Line 181: warning: exported method SqliteAdapter.WeekDay should have comment or be unexported (golint)
    • Line 187: warning: exported method SqliteAdapter.Quarter should have comment or be unexported (golint)
    • Line 193: warning: exported method SqliteAdapter.Hour should have comment or be unexported (golint)
    • Line 199: warning: exported method SqliteAdapter.Minute should have comment or be unexported (golint)
    • Line 205: warning: exported method SqliteAdapter.Second should have comment or be unexported (golint)
    • Line 211: warning: exported method SqliteAdapter.Regex should have comment or be unexported (golint)
    • Line 217: warning: exported method SqliteAdapter.IRegex should have comment or be unexported (golint)
    • Line 223: warning: exported method SqliteAdapter.Time should have comment or be unexported (golint)
    • Line 229: warning: exported method SqliteAdapter.IsNull should have comment or be unexported (golint)
    • Line 239: warning: exported method SqliteAdapter.Range should have comment or be unexported (golint)
    • Line 255: warning: exported method SqliteAdapter.BuildDeleteString should have comment or be unexported (golint)
    • Line 260: warning: exported method SqliteAdapter.SetIsolationLevelForTests should have comment or be unexported (golint)
    • Line 263: warning: exported method SqliteAdapter.Close should have comment or be unexported (golint)
    • Line 270: warning: exported method SqliteAdapter.ClearTestDatabase should have comment or be unexported (golint)
    • Line 274: warning: exported method SqliteAdapter.SetTimeZone should have comment or be unexported (golint)
    • Line 277: warning: exported method SqliteAdapter.InitializeDatabaseForTests should have comment or be unexported (golint)
    • Line 281: warning: exported method SqliteAdapter.StartDBShell should have comment or be unexported (golint)
    • Line 299: warning: exported method SqliteAdapter.GetLastError should have comment or be unexported (golint)
    • core/template.go
    • Line 11: warning: exported type ITemplateRenderer should have comment or be unexported (golint)
    • Line 17: warning: exported type IncludeContext should have comment or be unexported (golint)
    • Line 22: warning: exported type TemplateRenderer should have comment or be unexported (golint)
    • Line 27: warning: exported method TemplateRenderer.AddFuncMap should have comment or be unexported (golint)
    • Line 31: warning: exported method TemplateRenderer.Render should have comment or be unexported (golint)
    • Line 62: warning: exported method TemplateRenderer.RenderAsString should have comment or be unexported (golint)
    • Line 95: warning: exported function NewTemplateRenderer should have comment or be unexported (golint)
    • Line 149: warning: comment on exported function RenderHTMLAsString should be of the form "RenderHTMLAsString ..." (golint)
    • core/blueprint_interfaces.go
    • Line 12: warning: exported type TraverseMigrationResult should have comment or be unexported (golint)
    • Line 17: warning: exported type IBlueprint should have comment or be unexported (golint)
    • Line 25: warning: exported type IBlueprintRegistry should have comment or be unexported (golint)
    • Line 38: warning: exported type Blueprint should have comment or be unexported (golint)
    • Line 44: warning: exported method Blueprint.GetName should have comment or be unexported (golint)
    • Line 48: warning: exported method Blueprint.InitRouter should have comment or be unexported (golint)
    • Line 52: warning: exported method Blueprint.GetDescription should have comment or be unexported (golint)
    • Line 56: warning: exported method Blueprint.InitApp should have comment or be unexported (golint)
    • Line 60: warning: exported method Blueprint.GetMigrationRegistry should have comment or be unexported (golint)
    • Line 64: warning: exported type BlueprintRegistry should have comment or be unexported (golint)
    • Line 69: warning: exported method BlueprintRegistry.ResetMigrationTree should have comment or be unexported (golint)
    • Line 73: warning: exported method BlueprintRegistry.Iterate should have comment or be unexported (golint)
    • Line 84: warning: exported method BlueprintRegistry.GetByName should have comment or be unexported (golint)
    • Line 93: warning: exported method BlueprintRegistry.Register should have comment or be unexported (golint)
    • Line 97: warning: exported method BlueprintRegistry.DeRegister should have comment or be unexported (golint)
    • Line 101: warning: exported method BlueprintRegistry.GetMigrationTree should have comment or be unexported (golint)
    • Line 245: warning: exported method BlueprintRegistry.TraverseMigrations should have comment or be unexported (golint)
    • Line 287: warning: exported method BlueprintRegistry.InitializeRouting should have comment or be unexported (golint)
    • Line 324: warning: exported method BlueprintRegistry.Initialize should have comment or be unexported (golint)
    • Line 332: warning: exported method BlueprintRegistry.TraverseMigrationsDownTo should have comment or be unexported (golint)
    • Line 388: warning: exported function NewBlueprintRegistry should have comment or be unexported (golint)
    • core/command_registry.go
    • Line 8: warning: exported type CommandRegistry should have comment or be unexported (golint)
    • Line 12: warning: exported method CommandRegistry.AddAction should have comment or be unexported (golint)
    • Line 16: warning: exported method CommandRegistry.IsRegisteredCommand should have comment or be unexported (golint)
    • Line 21: warning: exported method CommandRegistry.RunAction should have comment or be unexported (golint)
    • Line 26: warning: exported method CommandRegistry.MakeHelpText should have comment or be unexported (golint)
    • core/config_interfaces.go
    • Line 25: warning: exported type ConfigOptions should have comment or be unexported (golint)
    • Line 77: warning: exported type DbOptions should have comment or be unexported (golint)
    • Line 82: warning: exported type AuthOptions should have comment or be unexported (golint)
    • Line 90: warning: exported type AdminOptions should have comment or be unexported (golint)
    • Line 98: warning: exported type APIOptions should have comment or be unexported (golint)
    • Line 105: warning: exported type SwaggerOptions should have comment or be unexported (golint)
    • Line 114: warning: exported type ConfigurableConfig should have comment or be unexported (golint)
    • Line 125: warning: exported type FieldChoice should have comment or be unexported (golint)
    • Line 130: warning: exported type IFieldChoiceRegistryInterface should have comment or be unexported (golint)
    • Line 134: warning: exported type FieldChoiceRegistry should have comment or be unexported (golint)
    • Line 138: warning: exported method FieldChoiceRegistry.IsValidChoice should have comment or be unexported (golint)
    • Line 142: warning: exported type IFieldFormOptions should have comment or be unexported (golint)
    • Line 158: warning: comment on exported type Config should be of the form "Config ..." (with optional leading article) (golint)
    • Line 174: warning: exported method Config.GetPathToTemplate should have comment or be unexported (golint)
    • Line 178: warning: exported method Config.GetTemplateContent should have comment or be unexported (golint)
    • Line 192: warning: exported method Config.GetPathToUploadDirectory should have comment or be unexported (golint)
    • Line 196: warning: exported method Config.GetURLToUploadDirectory should have comment or be unexported (golint)
    • Line 200: warning: exported method ConfigurableConfig.UnmarshalYAML should have comment or be unexported (golint)
    • Line 270: warning: exported var CurrentConfig should have comment or be unexported (golint)
    • Line 272: warning: comment on exported function NewConfig should be of the form "NewConfig ..." (golint)
    • Line 304: warning: comment on exported function NewSwaggerSpec should be of the form "NewSwaggerSpec ..." (golint)
    • core/reflect_helpers.go
    • Line 13: warning: exported function SetUpStructField should have comment or be unexported (golint)
    • Line 85: warning: exported function GetGoMonolithFieldTypeFromGormField should have comment or be unexported (golint)
    • Line 130: warning: exported function IsTruthyValue should have comment or be unexported (golint)
    • Line 157: warning: exported function TransformValueForWidget should have comment or be unexported (golint)
    • Line 214: warning: exported function TransformDateTimeValueForWidget should have comment or be unexported (golint)
    • Line 265: warning: exported function TransformValueForOperator should have comment or be unexported (golint)
    • Line 320: warning: exported function TransformValueForListDisplay should have comment or be unexported (golint)
    • core/template_funcs.go
    • Line 23: warning: exported function GenerateAttrs should have comment or be unexported (golint)
    • Line 35: warning: exported function GetDisplayName should have comment or be unexported (golint)
    • Line 80: warning: exported var FuncMap should have comment or be unexported (golint)
    • blueprint/otp/services/services.go
    • Line 17: warning: comment on exported function GetOTP should be of the form "GetOTP ..." (golint)
    • Line 42: warning: exported function VerifyOTP should have comment or be unexported (golint)
    • Line 61: warning: exported function GenerateOTPSeed should have comment or be unexported (golint)
    • blueprint/auth/interfaces/direct_for_admin.go
    • Line 16: warning: comment on exported type LoginParamsForGoMonolithAdmin should be of the form "LoginParamsForGoMonolithAdmin ..." (with optional leading article) (golint)
    • Line 24: warning: exported type SignupParamsForGoMonolithAdmin should have comment or be unexported (golint)
    • Line 31: warning: exported type DirectAuthForAdminProvider should have comment or be unexported (golint)
    • Line 34: warning: exported method DirectAuthForAdminProvider.GetUserFromRequest should have comment or be unexported (golint)
    • Line 42: warning: exported method DirectAuthForAdminProvider.Signin should have comment or be unexported (golint)
    • Line 94: warning: exported method DirectAuthForAdminProvider.Signup should have comment or be unexported (golint)
    • Line 153: warning: exported method DirectAuthForAdminProvider.Logout should have comment or be unexported (golint)
    • Line 188: warning: exported method DirectAuthForAdminProvider.IsAuthenticated should have comment or be unexported (golint)
    • Line 221: warning: exported method DirectAuthForAdminProvider.GetSession should have comment or be unexported (golint)
    • Line 243: warning: exported method DirectAuthForAdminProvider.GetName should have comment or be unexported (golint)
    • core/admin_context.go
    • Line 9: warning: exported var PopulateTemplateContextForAdminPanel should have comment or be unexported (golint)
    • Line 11: warning: exported type IForm should have comment or be unexported (golint)
    • Line 14: warning: exported type IAdminContext should have comment or be unexported (golint)
    • Line 50: warning: exported type AdminContext should have comment or be unexported (golint)
    • Line 81: warning: exported method AdminContext.SetID should have comment or be unexported (golint)
    • Line 85: warning: exported method AdminContext.GetCtx should have comment or be unexported (golint)
    • Line 89: warning: exported method AdminContext.SetAdminRequestParams should have comment or be unexported (golint)
    • Line 93: warning: exported method AdminContext.GetAdminRequestParams should have comment or be unexported (golint)
    • Line 97: warning: exported method AdminContext.SetCtx should have comment or be unexported (golint)
    • Line 101: warning: exported method AdminContext.SetUserObject should have comment or be unexported (golint)
    • Line 105: warning: exported method AdminContext.GetUserObject should have comment or be unexported (golint)
    • Line 109: warning: exported method AdminContext.SetPostForm should have comment or be unexported (golint)
    • Line 113: warning: exported method AdminContext.GetPostForm should have comment or be unexported (golint)
    • Line 117: warning: exported method AdminContext.GetID should have comment or be unexported (golint)
    • Line 121: warning: exported method AdminContext.SetBreadCrumbs should have comment or be unexported (golint)
    • Line 125: warning: exported method AdminContext.GetSessionKey should have comment or be unexported (golint)
    • Line 129: warning: exported method AdminContext.SetSiteName should have comment or be unexported (golint)
    • Line 133: warning: exported method AdminContext.SetCurrentURL should have comment or be unexported (golint)
    • Line 137: warning: exported method AdminContext.SetCurrentQuery should have comment or be unexported (golint)
    • Line 141: warning: exported method AdminContext.SetForm should have comment or be unexported (golint)
    • Line 145: warning: exported method AdminContext.SetFullURL should have comment or be unexported (golint)
    • Line 149: warning: exported method AdminContext.SetRootAdminURL should have comment or be unexported (golint)
    • Line 153: warning: exported method AdminContext.SetSessionKey should have comment or be unexported (golint)
    • Line 157: warning: exported method AdminContext.SetRootURL should have comment or be unexported (golint)
    • Line 161: warning: exported method AdminContext.GetRootURL should have comment or be unexported (golint)
    • Line 165: warning: exported method AdminContext.SetLanguage should have comment or be unexported (golint)
    • Line 169: warning: exported method AdminContext.SetLogo should have comment or be unexported (golint)
    • Line 173: warning: exported method AdminContext.SetFavIcon should have comment or be unexported (golint)
    • Line 177: warning: exported method AdminContext.GetLanguage should have comment or be unexported (golint)
    • Line 181: warning: exported method AdminContext.SetLanguages should have comment or be unexported (golint)
    • Line 185: warning: exported method AdminContext.SetUserPermissionRegistry should have comment or be unexported (golint)
    • Line 189: warning: exported method AdminContext.SetPageTitle should have comment or be unexported (golint)
    • Line 193: warning: exported method AdminContext.SetUser should have comment or be unexported (golint)
    • Line 197: warning: exported method AdminContext.SetUserExists should have comment or be unexported (golint)
    • Line 201: warning: exported method AdminContext.SetDemo should have comment or be unexported (golint)
    • Line 205: warning: exported method AdminContext.SetError should have comment or be unexported (golint)
    • Line 209: warning: exported method AdminContext.SetErrorExists should have comment or be unexported (golint)
    • core/admin_page_inlines.go
    • Line 10: warning: exported type InlineType should have comment or be unexported (golint)
    • Line 12: warning: exported var TabularInline should have comment or be unexported (golint)
    • Line 13: warning: exported var StackedInline should have comment or be unexported (golint)
    • Line 20: warning: exported type AdminPageInline should have comment or be unexported (golint)
    • Line 45: warning: exported method AdminPageInline.RenderExampleForm should have comment or be unexported (golint)
    • Line 67: warning: exported method AdminPageInline.GetFormForExample should have comment or be unexported (golint)
    • Line 81: warning: exported method AdminPageInline.GetFormIdenForNewItems should have comment or be unexported (golint)
    • Line 85: warning: exported method AdminPageInline.GetInlineID should have comment or be unexported (golint)
    • Line 89: warning: exported method AdminPageInline.GetAll should have comment or be unexported (golint)
    • Line 94: warning: exported method AdminPageInline.ProceedRequest should have comment or be unexported (golint)
    • Line 179: warning: exported function NewAdminPageInline should have comment or be unexported (golint)
    • Line 203: warning: exported function NewAdminPageInlineRegistry should have comment or be unexported (golint)
    • core/form_field_options.go
    • Line 3: warning: exported type FieldFormOptions should have comment or be unexported (golint)
    • Line 19: warning: exported method FieldFormOptions.GetName should have comment or be unexported (golint)
    • Line 23: warning: exported method FieldFormOptions.IsItFk should have comment or be unexported (golint)
    • Line 27: warning: exported method FieldFormOptions.GetListFieldWidget should have comment or be unexported (golint)
    • Line 31: warning: exported method FieldFormOptions.GetIsAutocomplete should have comment or be unexported (golint)
    • Line 35: warning: exported method FieldFormOptions.GetWidgetPopulate should have comment or be unexported (golint)
    • Line 39: warning: exported method FieldFormOptions.GetInitial should have comment or be unexported (golint)
    • Line 43: warning: exported method FieldFormOptions.GetDisplayName should have comment or be unexported (golint)
    • Line 47: warning: exported method FieldFormOptions.GetValidators should have comment or be unexported (golint)
    • Line 54: warning: exported method FieldFormOptions.GetChoices should have comment or be unexported (golint)
    • Line 58: warning: exported method FieldFormOptions.GetHelpText should have comment or be unexported (golint)
    • Line 62: warning: exported method FieldFormOptions.GetWidgetType should have comment or be unexported (golint)
    • Line 66: warning: exported method FieldFormOptions.GetReadOnly should have comment or be unexported (golint)
    • Line 70: warning: exported method FieldFormOptions.GetIsRequired should have comment or be unexported (golint)
    • Line 74: warning: exported type FormConfigurableOptionRegistry should have comment or be unexported (golint)
    • Line 78: warning: exported method FormConfigurableOptionRegistry.AddFieldFormOptions should have comment or be unexported (golint)
    • Line 82: warning: exported method FormConfigurableOptionRegistry.GetFieldFormOptions should have comment or be unexported (golint)
    • Line 87: warning: exported var FormCongirurableOptionInstance should have comment or be unexported (golint)
    • core/translation.go
    • Line 96: warning: comment on exported type NotTranslatedDataImplementation should be of the form "NotTranslatedDataImplementation ..." (with optional leading article) (golint)
    • Line 102: warning: exported method NotTranslatedDataImplementation.Store should have comment or be unexported (golint)
    • Line 111: warning: exported var NotTranslatedData should have comment or be unexported (golint)
    • Line 119: warning: comment on exported function Tf should be of the form "Tf ..." (golint)
    • Line 189: warning: exported function Translate should have comment or be unexported (golint)
    • core/csrf.go
    • Line 16: warning: exported function GenerateRandomStringForCSRFToken should have comment or be unexported (golint)
    • Line 25: warning: exported function GenerateCSRFToken should have comment or be unexported (golint)
    • Line 29: warning: exported function MaskCSRFToken should have comment or be unexported (golint)
    • Line 40: warning: exported function UnmaskCSRFToken should have comment or be unexported (golint)
    • language.go
    • Line 10: warning: exported type LanguageCommand should have comment or be unexported (golint)
    • Line 13: warning: exported method LanguageCommand.Proceed should have comment or be unexported (golint)
    • Line 38: warning: exported method LanguageCommand.GetHelpText should have comment or be unexported (golint)
    • Line 42: warning: exported type AddLanguageHandlerOptions should have comment or be unexported (golint)
    • Line 46: warning: exported type AddLanguageHandler should have comment or be unexported (golint)
    • Line 49: warning: exported method AddLanguageHandler.Proceed should have comment or be unexported (golint)
    • Line 277: warning: exported method AddLanguageHandler.GetHelpText should have comment or be unexported (golint)
    • admin.go
    • Line 13: warning: exported type AdminCommand should have comment or be unexported (golint)
    • Line 16: warning: exported method AdminCommand.Proceed should have comment or be unexported (golint)
    • Line 42: warning: exported method AdminCommand.GetHelpText should have comment or be unexported (golint)
    • Line 46: warning: exported type AdminStartServerOptions should have comment or be unexported (golint)
    • Line 49: warning: exported type ServeAdminServer should have comment or be unexported (golint)
    • Line 59: warning: exported method ServeAdminServer.Proceed should have comment or be unexported (golint)
    • Line 91: warning: exported method ServeAdminServer.GetHelpText should have comment or be unexported (golint)
    • test.go
    • Line 22: warning: exported type TestSuite should have comment or be unexported (golint)
    • Line 28: warning: exported method TestSuite.SetupTest should have comment or be unexported (golint)
    • Line 33: warning: exported method TestSuite.StoreDatabase should have comment or be unexported (golint)
    • Line 37: warning: exported method TestSuite.TearDownSuite should have comment or be unexported (golint)
    • Line 41: warning: exported function ClearTestApp should have comment or be unexported (golint)
    • Line 83: warning: exported function RunTests should have comment or be unexported (golint)
    • Line 313: warning: comment on exported function TestHTTPResponse should be of the form "TestHTTPResponse ..." (golint)
    • Line 328: warning: exported var CreatedDatabaseForTests should have comment or be unexported (golint)
    • Line 330: warning: exported function NewFullAppForTests should have comment or be unexported (golint)
    • core/form.go
    • Line 13: warning: exported type FormRenderContext should have comment or be unexported (golint)
    • Line 18: warning: exported function NewFormRenderContext should have comment or be unexported (golint)
    • Line 22: warning: exported type ColumnSchema should have comment or be unexported (golint)
    • Line 27: warning: exported type FormRow should have comment or be unexported (golint)
    • Line 31: warning: exported type IGrouppedFieldsRegistry should have comment or be unexported (golint)
    • Line 36: warning: exported type GrouppedFieldsRegistry should have comment or be unexported (golint)
    • Line 40: warning: exported method GrouppedFieldsRegistry.GetGroupByName should have comment or be unexported (golint)
    • Line 48: warning: exported method GrouppedFieldsRegistry.AddGroup should have comment or be unexported (golint)
    • Line 55: warning: exported type GrouppedFields should have comment or be unexported (golint)
    • Line 62: warning: exported type StaticFiles should have comment or be unexported (golint)
    • Line 67: warning: exported type FormError should have comment or be unexported (golint)
    • Line 72: warning: exported method FormError.AddGeneralError should have comment or be unexported (golint)
    • Line 75: warning: exported method FormError.IsEmpty should have comment or be unexported (golint)
    • Line 93: warning: exported method FormError.GetErrorForField should have comment or be unexported (golint)
    • Line 98: warning: exported type Form should have comment or be unexported (golint)
    • Line 118: warning: exported method Form.SetPrefix should have comment or be unexported (golint)
    • Line 125: warning: exported method Form.Render should have comment or be unexported (golint)
    • Line 208: warning: exported method Form.ProceedRequest should have comment or be unexported (golint)
    • Line 275: warning: exported function NewFormFromModel should have comment or be unexported (golint)
    • Line 324: warning: exported function NewFormFromModelFromGinContext should have comment or be unexported (golint)
    • core/http_responses.go
    • Line 8: warning: exported function APINoMethodFound should have comment or be unexported (golint)
    • Line 12: warning: exported function APIBadResponse should have comment or be unexported (golint)
    • Line 16: warning: exported type HTTPErrorResponse should have comment or be unexported (golint)
    • Line 27: warning: exported function NewHTTPErrorResponse should have comment or be unexported (golint)
    • Line 31: warning: exported function APIBadResponseWithCode should have comment or be unexported (golint)
    • Line 35: warning: exported function APISuccessResp should have comment or be unexported (golint)
    • core/microservice.go
    • Line 13: warning: exported type Microservice should have comment or be unexported (golint)
    • Line 23: warning: exported method Microservice.RegisterEndpoints should have comment or be unexported (golint)
    • Line 41: warning: exported method Microservice.Start should have comment or be unexported (golint)
    • Line 45: warning: exported method Microservice.StartSwagger should have comment or be unexported (golint)
    • core/random.go
    • Line 5: warning: exported var OnlyLetersNumbersStringAlphabet should have comment or be unexported (golint)
    • Line 7: warning: exported function GenerateRandomString should have comment or be unexported (golint)
    • blueprint/auth/interfaces/direct.go
    • Line 17: warning: comment on exported type LoginParams should be of the form "LoginParams ..." (with optional leading article) (golint)
    • Line 25: warning: exported type SignupParams should have comment or be unexported (golint)
    • Line 32: warning: exported type DirectAuthProvider should have comment or be unexported (golint)
    • Line 35: warning: exported method DirectAuthProvider.GetUserFromRequest should have comment or be unexported (golint)
    • Line 43: warning: exported method DirectAuthProvider.Signin should have comment or be unexported (golint)
    • Line 103: warning: exported method DirectAuthProvider.Signup should have comment or be unexported (golint)
    • Line 161: warning: exported method DirectAuthProvider.Logout should have comment or be unexported (golint)
    • Line 196: warning: exported method DirectAuthProvider.IsAuthenticated should have comment or be unexported (golint)
    • Line 222: warning: exported var GetUserForAPI should have comment or be unexported (golint)
    • Line 229: warning: exported method DirectAuthProvider.GetSession should have comment or be unexported (golint)
    • Line 251: warning: exported method DirectAuthProvider.GetName should have comment or be unexported (golint)
    • core/admin_search_fields.go
    • Line 9: warning: exported type ISearchFieldInterface should have comment or be unexported (golint)
    • Line 13: warning: exported type SearchField should have comment or be unexported (golint)
    • Line 18: warning: exported method SearchField.Search should have comment or be unexported (golint)
    • Line 26: warning: exported function NewSearchFieldRegistryFromGormModel should have comment or be unexported (golint)
    • Line 49: warning: exported type SearchFieldRegistry should have comment or be unexported (golint)
    • Line 53: warning: exported method SearchFieldRegistry.GetAll should have comment or be unexported (golint)
    • Line 65: warning: exported method SearchFieldRegistry.AddField should have comment or be unexported (golint)
    • Line 69: warning: exported method SearchFieldRegistry.GetFieldByName should have comment or be unexported (golint)
    • core/app.go
    • Line 7: warning: exported type IApp should have comment or be unexported (golint)
    • core/storages.go
    • Line 21: warning: exported type IStorageInterface should have comment or be unexported (golint)
    • Line 30: warning: exported type FileForStorage should have comment or be unexported (golint)
    • Line 36: warning: exported type FsStorage should have comment or be unexported (golint)
    • Line 41: warning: exported method FsStorage.GetUploadURL should have comment or be unexported (golint)
    • Line 45: warning: exported method FsStorage.Save should have comment or be unexported (golint)
    • Line 66: warning: exported method FsStorage.Stats should have comment or be unexported (golint)
    • Line 78: warning: exported method FsStorage.Exists should have comment or be unexported (golint)
    • Line 89: warning: exported method FsStorage.Delete should have comment or be unexported (golint)
    • Line 98: warning: exported function NewFsStorage should have comment or be unexported (golint)
    • Line 102: warning: exported type AWSS3Storage should have comment or be unexported (golint)
    • Line 111: warning: exported method AWSS3Storage.GetUploadURL should have comment or be unexported (golint)
    • Line 115: warning: exported method AWSS3Storage.Save should have comment or be unexported (golint)
    • Line 189: warning: exported method AWSS3Storage.Stats should have comment or be unexported (golint)
    • Line 193: warning: exported method AWSS3Storage.Exists should have comment or be unexported (golint)
    • Line 221: warning: exported method AWSS3Storage.Delete should have comment or be unexported (golint)
    • Line 249: warning: exported function NewAWSS3Storage should have comment or be unexported (golint)
    • Line 257: warning: exported type AWSS3Config should have comment or be unexported (golint)
    • Line 263: warning: exported type AWSConfig should have comment or be unexported (golint)
    • Line 267: warning: exported function NewAWSConfig should have comment or be unexported (golint)
    • blueprint/abtest/abtest.go
    • Line 17: warning: exported type Blueprint should have comment or be unexported (golint)
    • Line 21: warning: exported method Blueprint.InitRouter should have comment or be unexported (golint)
    • Line 137: warning: exported method Blueprint.InitApp should have comment or be unexported (golint)
    • Line 143: warning: exported var ConcreteBlueprint should have comment or be unexported (golint)
    • utils/admin.go
    • Line 10: warning: comment on exported function Commaf should be of the form "Commaf ..." (golint)
    • Line 43: warning: exported function IsLocal should have comment or be unexported (golint)
    • openapi.go
    • Line 14: warning: exported type OpenAPICommand should have comment or be unexported (golint)
    • Line 17: warning: exported method OpenAPICommand.Proceed should have comment or be unexported (golint)
    • Line 42: warning: exported method OpenAPICommand.GetHelpText should have comment or be unexported (golint)
    • Line 46: warning: exported type ServeOpenAPIEditorCommand should have comment or be unexported (golint)
    • Line 49: warning: exported method ServeOpenAPIEditorCommand.Proceed should have comment or be unexported (golint)
    • Line 86: warning: exported method ServeOpenAPIEditorCommand.GetHelpText should have comment or be unexported (golint)
    • core/form_fields.go
    • Line 12: warning: exported type IFieldRegistry should have comment or be unexported (golint)
    • Line 20: warning: exported type GoMonolithFieldType should have comment or be unexported (golint)
    • Line 22: warning: exported const BigIntegerFieldType should have comment or be unexported (golint)
    • Line 23: warning: exported const BinaryFieldType should have comment or be unexported (golint)
    • Line 24: warning: exported const BooleanFieldType should have comment or be unexported (golint)
    • Line 25: warning: exported const CharFieldType should have comment or be unexported (golint)
    • Line 26: warning: exported const DateFieldType should have comment or be unexported (golint)
    • Line 27: warning: exported const DateTimeFieldType should have comment or be unexported (golint)
    • Line 28: warning: exported const DecimalFieldType should have comment or be unexported (golint)
    • Line 29: warning: exported const DurationFieldType should have comment or be unexported (golint)
    • Line 30: warning: exported const EmailFieldType should have comment or be unexported (golint)
    • Line 31: warning: exported const FileFieldType should have comment or be unexported (golint)
    • Line 32: warning: exported const FilePathFieldType should have comment or be unexported (golint)
    • Line 33: warning: exported const FloatFieldType should have comment or be unexported (golint)
    • Line 34: warning: exported const ForeignKeyFieldType should have comment or be unexported (golint)
    • Line 35: warning: exported const ImageFieldFieldType should have comment or be unexported (golint)
    • Line 36: warning: exported const IntegerFieldType should have comment or be unexported (golint)
    • Line 37: warning: exported const UintFieldType should have comment or be unexported (golint)
    • Line 38: warning: exported const IPAddressFieldType should have comment or be unexported (golint)
    • Line 39: warning: exported const GenericIPAddressFieldType should have comment or be unexported (golint)
    • Line 40: warning: exported const ManyToManyFieldType should have comment or be unexported (golint)
    • Line 41: warning: exported const NullBooleanFieldType should have comment or be unexported (golint)
    • Line 42: warning: exported const PositiveBigIntegerFieldType should have comment or be unexported (golint)
    • Line 43: warning: exported const PositiveIntegerFieldType should have comment or be unexported (golint)
    • Line 44: warning: exported const PositiveSmallIntegerFieldType should have comment or be unexported (golint)
    • Line 45: warning: exported const SlugFieldType should have comment or be unexported (golint)
    • Line 46: warning: exported const SmallIntegerFieldType should have comment or be unexported (golint)
    • Line 47: warning: exported const TextFieldType should have comment or be unexported (golint)
    • Line 48: warning: exported const TimeFieldType should have comment or be unexported (golint)
    • Line 49: warning: exported const URLFieldType should have comment or be unexported (golint)
    • Line 50: warning: exported const UUIDFieldType should have comment or be unexported (golint)
    • Line 52: warning: exported type FieldConfig should have comment or be unexported (golint)
    • Line 58: warning: exported type Field should have comment or be unexported (golint)
    • Line 76: warning: exported method Field.ProceedForm should have comment or be unexported (golint)
    • Line 97: warning: exported type ValidationError should have comment or be unexported (golint)
    • Line 99: warning: exported function NewFieldForListDisplayFromGormField should have comment or be unexported (golint)
    • Line 137: warning: exported function NewFieldFromGormField should have comment or be unexported (golint)
    • Line 172: warning: exported function NewGoMonolithFieldForListDisplayFromGormField should have comment or be unexported (golint)
    • Line 221: warning: exported function NewGoMonolithFieldFromGormField should have comment or be unexported (golint)
    • Line 271: warning: exported type FieldRegistry should have comment or be unexported (golint)
    • Line 276: warning: exported method FieldRegistry.GetByName should have comment or be unexported (golint)
    • Line 284: warning: exported method FieldRegistry.GetAllFields should have comment or be unexported (golint)
    • Line 288: warning: exported method FieldRegistry.GetAllFieldsWithOrdering should have comment or be unexported (golint)
    • Line 302: warning: exported method FieldRegistry.GetPrimaryKey should have comment or be unexported (golint)
    • Line 311: warning: exported method FieldRegistry.AddField should have comment or be unexported (golint)
    • Line 322: warning: exported function NewFieldRegistry should have comment or be unexported (golint)
    • blueprint/user/user.go
    • Line 21: warning: exported type Blueprint should have comment or be unexported (golint)
    • Line 25: warning: exported type PasswordValidationStruct should have comment or be unexported (golint)
    • Line 30: warning: exported type ForgotPasswordHandlerParams should have comment or be unexported (golint)
    • Line 34: warning: exported type ResetPasswordHandlerParams should have comment or be unexported (golint)
    • Line 40: warning: exported type ChangePasswordHandlerParams should have comment or be unexported (golint)
    • Line 46: warning: exported method Blueprint.InitRouter should have comment or be unexported (golint)
    • Line 612: warning: exported method Blueprint.InitApp should have comment or be unexported (golint)
    • Line 697: warning: exported var ConcreteBlueprint should have comment or be unexported (golint)
    • utils/email.go
    • Line 43: warning: exported type SentEmail should have comment or be unexported (golint)
    • Line 51: warning: exported type SentEmailsDuringTestsType should have comment or be unexported (golint)
    • Line 55: warning: exported method SentEmailsDuringTestsType.AddSentEmail should have comment or be unexported (golint)
    • Line 65: warning: exported method SentEmailsDuringTestsType.ClearTestEmails should have comment or be unexported (golint)
    • Line 69: warning: exported method SentEmailsDuringTestsType.IsAnyMatchedEmailSent should have comment or be unexported (golint)
    • Line 92: warning: exported method SentEmailsDuringTestsType.IsAnyEmailSentWithStringInBodyOrSubject should have comment or be unexported (golint)
    • Line 109: warning: exported var SentEmailsDuringTests should have comment or be unexported (golint)
    • Line 113: warning: comment on exported function SendEmail should be of the form "SendEmail ..." (golint)
    • blueprint.go
    • Line 15: warning: exported type BlueprintCommand should have comment or be unexported (golint)
    • Line 18: warning: exported method BlueprintCommand.Proceed should have comment or be unexported (golint)
    • Line 43: warning: exported method BlueprintCommand.GetHelpText should have comment or be unexported (golint)
    • Line 47: warning: exported type CreateBlueprintOptions should have comment or be unexported (golint)
    • Line 52: warning: exported type CreateBlueprint should have comment or be unexported (golint)
    • Line 59: warning: exported method CreateBlueprint.Proceed should have comment or be unexported (golint)
    • Line 145: warning: exported method CreateBlueprint.GetHelpText should have comment or be unexported (golint)
    • core/admin_list_filter.go
    • Line 11: warning: exported type ListFilter should have comment or be unexported (golint)
    • Line 21: warning: exported method ListFilter.FilterQs should have comment or be unexported (golint)
    • Line 29: warning: exported method ListFilter.IsItActive should have comment or be unexported (golint)
    • Line 33: warning: exported method ListFilter.GetURLToClearFilter should have comment or be unexported (golint)
    • Line 41: warning: exported method ListFilter.IsThatOptionActive should have comment or be unexported (golint)
    • Line 53: warning: exported method ListFilter.GetURLForOption should have comment or be unexported (golint)
    • Line 61: warning: exported type ListFilterRegistry should have comment or be unexported (golint)
    • Line 65: warning: exported type ListFilterList should have comment or be unexported (golint)
    • Line 73: warning: exported method ListFilterRegistry.Iterate should have comment or be unexported (golint)
    • Line 91: warning: exported method ListFilterRegistry.IsEmpty should have comment or be unexported (golint)
    • Line 95: warning: exported method ListFilterRegistry.Add should have comment or be unexported (golint)
    • Line 99: warning: exported type DisplayFilterOption should have comment or be unexported (golint)
    • Line 105: warning: exported type FilterOption should have comment or be unexported (golint)
    • Line 110: warning: exported type FilterOptionsRegistry should have comment or be unexported (golint)
    • Line 114: warning: exported method FilterOptionsRegistry.AddFilterOption should have comment or be unexported (golint)
    • Line 118: warning: exported method FilterOptionsRegistry.GetAll should have comment or be unexported (golint)
    • Line 129: warning: exported function NewFilterOptionsRegistry should have comment or be unexported (golint)
    • Line 133: warning: exported function NewFilterOption should have comment or be unexported (golint)
    • Line 137: warning: exported function FetchOptionsFromGormModelFromDateTimeField should have comment or be unexported (golint)
    • core/admin_model_actions.go
    • Line 13: warning: exported var GlobalModelActionRegistry should have comment or be unexported (golint)
    • Line 15: warning: exported type RemovalTreeList should have comment or be unexported (golint)
    • Line 85: warning: exported type AdminActionPlacement should have comment or be unexported (golint)
    • Line 94: warning: exported type IAdminModelActionInterface should have comment or be unexported (golint)
    • Line 97: warning: exported type AdminModelAction should have comment or be unexported (golint)
    • Line 118: warning: exported function NewAdminModelAction should have comment or be unexported (golint)
    • Line 128: warning: exported type AdminModelActionRegistry should have comment or be unexported (golint)
    • Line 132: warning: exported method AdminModelActionRegistry.AddModelAction should have comment or be unexported (golint)
    • Line 136: warning: exported method AdminModelActionRegistry.IsThereAnyActions should have comment or be unexported (golint)
    • Line 140: warning: exported method AdminModelActionRegistry.IsThereAnyActionsToShowOnEditPage should have comment or be unexported (golint)
    • Line 149: warning: exported method AdminModelActionRegistry.GetAllModelActions should have comment or be unexported (golint)
    • Line 167: warning: exported method AdminModelActionRegistry.GetAllModelActionsForUser should have comment or be unexported (golint)
    • Line 195: warning: exported method AdminModelActionRegistry.GetModelActionByName should have comment or be unexported (golint)
    • Line 203: warning: exported type RemovalTreeNode should have comment or be unexported (golint)
    • Line 213: warning: exported type RemovalTreeNodeStringified should have comment or be unexported (golint)
    • Line 218: warning: exported type RemovalOrderList should have comment or be unexported (golint)
    • Line 220: warning: exported function TraverseRemovalTreeNode should have comment or be unexported (golint)
    • Line 230: warning: exported method RemovalTreeNode.RemoveFromDatabase should have comment or be unexported (golint)
    • Line 253: warning: exported method RemovalTreeNode.BuildDeletionTreeStringified should have comment or be unexported (golint)
    • Line 290: warning: exported function BuildRemovalTree should have comment or be unexported (golint)
    • Line 383: warning: exported function NewAdminModelActionRegistry should have comment or be unexported (golint)
    • Line 394: warning: exported function NewEmptyModelActionRegistry should have comment or be unexported (golint)
    • core/auth_provider_interfaces.go
    • Line 8: warning: exported type IAuthProvider should have comment or be unexported (golint)
    • Line 18: warning: exported type AuthProviderRegistry should have comment or be unexported (golint)
    • Line 22: warning: exported method AuthProviderRegistry.RegisterNewAdapter should have comment or be unexported (golint)
    • Line 26: warning: exported method AuthProviderRegistry.GetAdapter should have comment or be unexported (golint)
    • Line 34: warning: exported method AuthProviderRegistry.Iterate should have comment or be unexported (golint)
    • Line 45: warning: exported function NewAuthProviderRegistry should have comment or be unexported (golint)
    • core/core_helpers.go
    • Line 12: warning: exported function Contains should have comment or be unexported (golint)
    • Line 21: warning: exported function ContainsInt64 should have comment or be unexported (golint)
    • Line 30: warning: exported function GenerateNumberSequence should have comment or be unexported (golint)
    • Line 46: warning: exported function CloneNetURL should have comment or be unexported (golint)
    • Line 61: warning: exported function GetID should have comment or be unexported (golint)
    • Line 71: warning: exported function Remove should have comment or be unexported (golint)
    • Line 165: warning: exported function HumanizeCamelCase should have comment or be unexported (golint)
    • core/perm_interfaces.go
    • Line 8: warning: exported type PermissionDescribed should have comment or be unexported (golint)
    • Line 13: warning: exported type IPermissionRegistry should have comment or be unexported (golint)
    • Line 19: warning: exported type IUserPermissionRegistry should have comment or be unexported (golint)
    • Line 23: warning: exported type CustomPermission should have comment or be unexported (golint)
    • Line 25: warning: exported type UserPermRegistry should have comment or be unexported (golint)
    • Line 34: warning: exported method UserPermRegistry.AddPermissionForBlueprint should have comment or be unexported (golint)
    • Line 39: warning: exported method UserPermRegistry.GetPermissionForBlueprint should have comment or be unexported (golint)
    • Line 51: warning: exported method UserPermRegistry.IsThereAnyPermissionForBlueprint should have comment or be unexported (golint)
    • Line 63: warning: exported type PermRegistry should have comment or be unexported (golint)
    • Line 67: warning: exported method PermRegistry.AddPermission should have comment or be unexported (golint)
    • Line 75: warning: exported method PermRegistry.GetPermissionName should have comment or be unexported (golint)
    • Line 84: warning: exported method PermRegistry.GetPermissionBit should have comment or be unexported (golint)
    • Line 93: warning: exported method PermRegistry.GetAllPermissions should have comment or be unexported (golint)
    • Line 104: warning: exported type UserPerm should have comment or be unexported (golint)
    • Line 109: warning: exported method UserPerm.DoesUserHaveRightFor should have comment or be unexported (golint)
    • Line 117: warning: exported method UserPerm.AddPermission should have comment or be unexported (golint)
    • Line 121: warning: exported method UserPerm.HasReadPermission should have comment or be unexported (golint)
    • Line 128: warning: exported method UserPerm.HasAddPermission should have comment or be unexported (golint)
    • Line 135: warning: exported method UserPerm.HasEditPermission should have comment or be unexported (golint)
    • Line 142: warning: exported method UserPerm.HasDeletePermission should have comment or be unexported (golint)
    • Line 149: warning: exported method UserPerm.HasPublishPermission should have comment or be unexported (golint)
    • Line 156: warning: exported method UserPerm.HasRevertPermission should have comment or be unexported (golint)
    • Line 163: warning: exported function NewPerm should have comment or be unexported (golint)
    • Line 169: warning: exported type PermBitInteger should have comment or be unexported (golint)
    • Line 171: warning: exported const ReadPermBit should have comment or be unexported (golint)
    • Line 172: warning: exported const AddPermBit should have comment or be unexported (golint)
    • Line 173: warning: exported const EditPermBit should have comment or be unexported (golint)
    • Line 174: warning: exported const DeletePermBit should have comment or be unexported (golint)
    • Line 175: warning: exported const PublishPermBit should have comment or be unexported (golint)
    • Line 176: warning: exported const RevertPermBit should have comment or be unexported (golint)
    • Line 178: warning: exported var ProjectPermRegistry should have comment or be unexported (golint)
    • Line 190: warning: exported function NewUserPerm should have comment or be unexported (golint)
    • Line 194: warning: exported function NewUserPermRegistry should have comment or be unexported (golint)
    • blueprint/sessions/sessions.go
    • Line 11: warning: exported type Blueprint should have comment or be unexported (golint)
    • Line 16: warning: exported method Blueprint.InitRouter should have comment or be unexported (golint)
    • Line 136: warning: exported method Blueprint.InitApp should have comment or be unexported (golint)
    • Line 141: warning: exported var ConcreteBlueprint should have comment or be unexported (golint)
    • blueprint/settings/settings.go
    • Line 13: warning: exported type Blueprint should have comment or be unexported (golint)
    • Line 17: warning: exported method Blueprint.InitRouter should have comment or be unexported (golint)
    • Line 207: warning: exported method Blueprint.InitApp should have comment or be unexported (golint)
    • Line 214: warning: exported var ConcreteBlueprint should have comment or be unexported (golint)
    • core/core_user_interfaces.go
    • Line 8: warning: exported type IUser should have comment or be unexported (golint)
    • Line 59: warning: exported var GenerateUserModel should have comment or be unexported (golint)
    • Line 63: warning: exported var GenerateBunchOfUserModels should have comment or be unexported (golint)
    • core/user_core_models.go
    • Line 11: warning: exported type User should have comment or be unexported (golint)
    • Line 35: warning: exported method User.GetID should have comment or be unexported (golint)
    • Line 39: warning: exported method User.GetCreatedAt should have comment or be unexported (golint)
    • Line 43: warning: exported method User.GetUpdatedAt should have comment or be unexported (golint)
    • Line 47: warning: exported method User.GetDeletedAt should have comment or be unexported (golint)
    • Line 51: warning: exported method User.GetUsername should have comment or be unexported (golint)
    • Line 55: warning: exported method User.GetFirstName should have comment or be unexported (golint)
    • Line 59: warning: exported method User.GetLastName should have comment or be unexported (golint)
    • Line 63: warning: exported method User.GetPassword should have comment or be unexported (golint)
    • Line 67: warning: exported method User.GetIsPasswordUsable should have comment or be unexported (golint)
    • Line 71: warning: exported method User.GetEmail should have comment or be unexported (golint)
    • Line 75: warning: exported method User.GetActive should have comment or be unexported (golint)
    • Line 79: warning: exported method User.GetIsStaff should have comment or be unexported (golint)
    • Line 83: warning: exported method User.GetIsSuperUser should have comment or be unexported (golint)
    • Line 87: warning: exported method User.GetUserGroups should have comment or be unexported (golint)
    • Line 91: warning: exported method User.GetPermissions should have comment or be unexported (golint)
    • Line 95: warning: exported method User.GetPhoto should have comment or be unexported (golint)
    • Line 99: warning: exported method User.GetLastLogin should have comment or be unexported (golint)
    • Line 103: warning: exported method User.GetExpiresOn should have comment or be unexported (golint)
    • Line 107: warning: exported method User.GetGeneratedOTPToVerify should have comment or be unexported (golint)
    • Line 111: warning: exported method User.GetOTPSeed should have comment or be unexported (golint)
    • Line 115: warning: exported method User.GetOTPRequired should have comment or be unexported (golint)
    • Line 119: warning: exported method User.GetSalt should have comment or be unexported (golint)
    • Line 123: warning: exported method User.GetPermissionRegistry should have comment or be unexported (golint)
    • Line 127: warning: exported method User.SetCreatedAt should have comment or be unexported (golint)
    • Line 131: warning: exported method User.SetUpdatedAt should have comment or be unexported (golint)
    • Line 135: warning: exported method User.SetDeletedAt should have comment or be unexported (golint)
    • Line 139: warning: exported method User.SetUsername should have comment or be unexported (golint)
    • Line 143: warning: exported method User.SetFirstName should have comment or be unexported (golint)
    • Line 147: warning: exported method User.SetLastName should have comment or be unexported (golint)
    • Line 151: warning: exported method User.SetPassword should have comment or be unexported (golint)
    • Line 155: warning: exported method User.SetIsPasswordUsable should have comment or be unexported (golint)
    • Line 159: warning: exported method User.SetEmail should have comment or be unexported (golint)
    • Line 163: warning: exported method User.SetActive should have comment or be unexported (golint)
    • Line 167: warning: exported method User.SetIsStaff should have comment or be unexported (golint)
    • Line 171: warning: exported method User.SetIsSuperUser should have comment or be unexported (golint)
    • Line 175: warning: exported method User.SetUserGroups should have comment or be unexported (golint)
    • Line 179: warning: exported method User.SetPermissions should have comment or be unexported (golint)
    • Line 183: warning: exported method User.SetPhoto should have comment or be unexported (golint)
    • Line 187: warning: exported method User.SetLastLogin should have comment or be unexported (golint)
    • Line 191: warning: exported method User.SetExpiresOn should have comment or be unexported (golint)
    • Line 195: warning: exported method User.SetGeneratedOTPToVerify should have comment or be unexported (golint)
    • Line 199: warning: exported method User.SetOTPSeed should have comment or be unexported (golint)
    • Line 203: warning: exported method User.SetOTPRequired should have comment or be unexported (golint)
    • Line 207: warning: exported method User.SetSalt should have comment or be unexported (golint)
    • Line 211: warning: exported method User.SetPermissionRegistry should have comment or be unexported (golint)
    • Line 215: warning: exported method User.Reset should have comment or be unexported (golint)
    • Line 221: warning: exported method User.GetFullName should have comment or be unexported (golint)
    • Line 246: warning: exported method User.BuildPermissionRegistry should have comment or be unexported (golint)
    • Line 475: warning: comment on exported type Permission should be of the form "Permission ..." (with optional leading article) (golint)
    • Line 493: warning: exported method Permission.ShortDescription should have comment or be unexported (golint)
    • Line 503: warning: exported function LoadPermissions should have comment or be unexported (golint)
    • Line 510: warning: comment on exported type OneTimeActionType should be of the form "OneTimeActionType ..." (with optional leading article) (golint)
    • Line 513: warning: exported method OneTimeActionType.ResetPassword should have comment or be unexported (golint)
    • Line 517: warning: exported type OneTimeAction should have comment or be unexported (golint)
    • Line 531: warning: exported type UserAuthToken should have comment or be unexported (golint)
    • Line 539: warning: exported method UserAuthToken.BeforeCreate should have comment or be unexported (golint)
    • Line 546: warning: exported method UserAuthToken.IsExpired should have comment or be unexported (golint)
    • blueprint/logging/logging.go
    • Line 11: warning: exported type Blueprint should have comment or be unexported (golint)
    • Line 15: warning: exported method Blueprint.InitRouter should have comment or be unexported (golint)
    • Line 78: warning: exported method Blueprint.InitApp should have comment or be unexported (golint)
    • Line 82: warning: exported var ConcreteBlueprint should have comment or be unexported (golint)
    • shell.go
    • Line 9: warning: exported type ShellCommand should have comment or be unexported (golint)
    • Line 12: warning: exported method ShellCommand.Proceed should have comment or be unexported (golint)
    • Line 30: warning: exported method ShellCommand.GetHelpText should have comment or be unexported (golint)
    • core/admin_page.go
    • Line 14: warning: exported var CurrentAdminPageRegistry should have comment or be unexported (golint)
    • Line 16: warning: exported type AdminPagesList should have comment or be unexported (golint)
    • Line 27: warning: exported type AdminPageRegistry should have comment or be unexported (golint)
    • Line 31: warning: exported method AdminPageRegistry.GetByModelName should have comment or be unexported (golint)
    • Line 62: warning: exported method AdminPageRegistry.GetBySlug should have comment or be unexported (golint)
    • Line 70: warning: exported method AdminPageRegistry.AddAdminPage should have comment or be unexported (golint)
    • Line 75: warning: exported method AdminPageRegistry.GetAll should have comment or be unexported (golint)
    • Line 99: warning: exported method AdminPageRegistry.PreparePagesForTemplate should have comment or be unexported (golint)
    • Line 126: warning: exported type AdminPage should have comment or be unexported (golint)
    • Line 180: warning: exported type ModelActionRequestParams should have comment or be unexported (golint)
    • Line 185: warning: exported method AdminPage.GenerateLinkForModelAutocompletion should have comment or be unexported (golint)
    • Line 189: warning: exported method AdminPage.GenerateLinkToEditModel should have comment or be unexported (golint)
    • Line 194: warning: exported method AdminPage.DoesUserHavePermission should have comment or be unexported (golint)
    • Line 208: warning: exported method AdminPage.GenerateLinkToAddNewModel should have comment or be unexported (golint)
    • Line 216: warning: exported method AdminPage.HandleModelAction should have comment or be unexported (golint)
    • Line 254: warning: exported method AdminPage.FetchFilterOptions should have comment or be unexported (golint)
    • Line 266: warning: exported function NewAdminPageRegistry should have comment or be unexported (golint)
    • Line 272: warning: exported type AdminPageInlineRegistry should have comment or be unexported (golint)
    • Line 276: warning: exported method AdminPageInlineRegistry.Add should have comment or be unexported (golint)
    • Line 280: warning: exported method AdminPageInlineRegistry.GetAll should have comment or be unexported (golint)
    • core/project_models.go
    • Line 9: warning: exported type ModelDescription should have comment or be unexported (golint)
    • Line 15: warning: exported type ProjectModelRegistry should have comment or be unexported (golint)
    • Line 19: warning: exported method ProjectModelRegistry.RegisterModel should have comment or be unexported (golint)
    • Line 32: warning: exported method ProjectModelRegistry.Iterate should have comment or be unexported (golint)
    • Line 43: warning: exported method ProjectModelRegistry.GetModelByName should have comment or be unexported (golint)
    • Line 51: warning: exported method ProjectModelRegistry.GetModelFromInterface should have comment or be unexported (golint)
    • Line 61: warning: exported var ProjectModels should have comment or be unexported (golint)
    • Line 69: warning: exported function ClearProjectModels should have comment or be unexported (golint)
    • blueprint/language/language.go
    • Line 12: warning: exported type Blueprint should have comment or be unexported (golint)
    • Line 16: warning: exported method Blueprint.InitRouter should have comment or be unexported (golint)
    • Line 67: warning: exported method Blueprint.InitApp should have comment or be unexported (golint)
    • Line 71: warning: exported var ConcreteBlueprint should have comment or be unexported (golint)
    • utils/encrypt.go
    • Line 27: warning: exported function Encrypt should have comment or be unexported (golint)
    • Line 51: warning: exported function Decrypt should have comment or be unexported (golint)
    • create_faked_data.go
    • Line 13: warning: exported type CreateFakedDataCommand should have comment or be unexported (golint)
    • Line 16: warning: exported method CreateFakedDataCommand.Proceed should have comment or be unexported (golint)
    • Line 81: warning: exported method CreateFakedDataCommand.GetHelpText should have comment or be unexported (golint)
    • core/admin_sort.go
    • Line 3: warning: exported type ISortBy should have comment or be unexported (golint)
    • Line 9: warning: exported type SortBy should have comment or be unexported (golint)
    • Line 15: warning: exported method SortBy.Sort should have comment or be unexported (golint)
    • Line 23: warning: exported method SortBy.SetSortCustomImplementation should have comment or be unexported (golint)
    • Line 27: warning: exported method SortBy.GetDirection should have comment or be unexported (golint)
    • blueprint/sessions/interfaces/interfaces.go
    • Line 13: warning: exported type SessionProviderRegistry should have comment or be unexported (golint)
    • Line 18: warning: exported method SessionProviderRegistry.RegisterNewAdapter should have comment or be unexported (golint)
    • Line 25: warning: exported method SessionProviderRegistry.GetAdapter should have comment or be unexported (golint)
    • Line 33: warning: exported method SessionProviderRegistry.GetDefaultAdapter should have comment or be unexported (golint)
    • Line 41: warning: exported function NewSessionRegistry should have comment or be unexported (golint)
    • Line 48: warning: exported function NewSession should have comment or be unexported (golint)
    • blueprint/auth/interfaces/token.go
    • Line 16: warning: exported type TokenAuthProvider should have comment or be unexported (golint)
    • Line 19: warning: exported method TokenAuthProvider.GetUserFromRequest should have comment or be unexported (golint)
    • Line 31: warning: comment on exported type TokenLoginParams should be of the form "TokenLoginParams ..." (with optional leading article) (golint)
    • Line 39: warning: comment on exported type TokenSignupParams should be of the form "TokenSignupParams ..." (with optional leading article) (golint)
    • Line 47: warning: comment on exported type UserAPIResponse should be of the form "UserAPIResponse ..." (with optional leading article) (golint)
    • Line 54: warning: comment on exported method TokenAuthProvider.Signin should be of the form "Signin ..." (golint)
    • Line 132: warning: comment on exported method TokenAuthProvider.Signup should be of the form "Signup ..." (golint)
    • Line 205: warning: exported method TokenAuthProvider.Logout should have comment or be unexported (golint)
    • Line 209: warning: exported method TokenAuthProvider.IsAuthenticated should have comment or be unexported (golint)
    • Line 213: warning: exported method TokenAuthProvider.GetSession should have comment or be unexported (golint)
    • Line 217: warning: exported method TokenAuthProvider.GetName should have comment or be unexported (golint)
    • app.go
    • Line 24: warning: exported type App should have comment or be unexported (golint)
    • Line 34: warning: exported method App.GetConfig should have comment or be unexported (golint)
    • Line 38: warning: exported method App.GetDatabase should have comment or be unexported (golint)
    • Line 42: warning: exported method App.GetRouter should have comment or be unexported (golint)
    • Line 46: warning: exported method App.GetCommandRegistry should have comment or be unexported (golint)
    • Line 50: warning: exported method App.GetBlueprintRegistry should have comment or be unexported (golint)
    • Line 54: warning: exported method App.GetDashboardAdminPanel should have comment or be unexported (golint)
    • Line 60: warning: exported function NewApp should have comment or be unexported (golint)
    • Line 103: warning: exported function ClearApp should have comment or be unexported (golint)
    • Line 107: warning: exported function StoreCurrentApp should have comment or be unexported (golint)
    • Line 111: warning: exported method App.Initialize should have comment or be unexported (golint)
    • Line 115: warning: exported method App.GetAuthAdapterRegistry should have comment or be unexported (golint)
    • Line 119: warning: exported method App.RegisterBaseBlueprints should have comment or be unexported (golint)
    • Line 130: warning: exported method App.RegisterBlueprint should have comment or be unexported (golint)
    • Line 134: warning: exported method App.RegisterCommand should have comment or be unexported (golint)
    • Line 138: warning: exported method App.RegisterBaseCommands should have comment or be unexported (golint)
    • Line 153: warning: exported method App.ExecuteCommand should have comment or be unexported (golint)
    • Line 185: warning: exported method App.TriggerCommandExecution should have comment or be unexported (golint)
    • Line 189: warning: exported method App.StartAdmin should have comment or be unexported (golint)
    • Line 193: warning: exported method App.StartAPI should have comment or be unexported (golint)
    • Line 216: warning: exported method App.InitializeRouter should have comment or be unexported (golint)
    • Line 230: warning: exported method App.BaseAPIUrl should have comment or be unexported (golint)
    • dbshell.go
    • Line 7: warning: exported type DbShellCommand should have comment or be unexported (golint)
    • Line 10: warning: exported method DbShellCommand.Proceed should have comment or be unexported (golint)
    • Line 15: warning: exported method DbShellCommand.GetHelpText should have comment or be unexported (golint)
    • core/form_widget.go
    • Line 18: warning: exported type WidgetType should have comment or be unexported (golint)
    • Line 20: warning: exported const UnknownInputWidgetType should have comment or be unexported (golint)
    • Line 21: warning: exported const TextInputWidgetType should have comment or be unexported (golint)
    • Line 22: warning: exported const DynamicInputWidgetType should have comment or be unexported (golint)
    • Line 23: warning: exported const NumberInputWidgetType should have comment or be unexported (golint)
    • Line 24: warning: exported const EmailInputWidgetType should have comment or be unexported (golint)
    • Line 25: warning: exported const URLInputWidgetType should have comment or be unexported (golint)
    • Line 26: warning: exported const PasswordInputWidgetType should have comment or be unexported (golint)
    • Line 27: warning: exported const HiddenInputWidgetType should have comment or be unexported (golint)
    • Line 28: warning: exported const DateInputWidgetType should have comment or be unexported (golint)
    • Line 29: warning: exported const DateTimeInputWidgetType should have comment or be unexported (golint)
    • Line 30: warning: exported const TimeInputWidgetType should have comment or be unexported (golint)
    • Line 31: warning: exported const TextareaInputWidgetType should have comment or be unexported (golint)
    • Line 32: warning: exported const CheckboxInputWidgetType should have comment or be unexported (golint)
    • Line 33: warning: exported const SelectWidgetType should have comment or be unexported (golint)
    • Line 34: warning: exported const ForeignKeyWidgetType should have comment or be unexported (golint)
    • Line 35: warning: exported const NullBooleanWidgetType should have comment or be unexported (golint)
    • Line 36: warning: exported const SelectMultipleWidgetType should have comment or be unexported (golint)
    • Line 37: warning: exported const RadioSelectWidgetType should have comment or be unexported (golint)
    • Line 38: warning: exported const RadioWidgetType should have comment or be unexported (golint)
    • Line 39: warning: exported const CheckboxSelectMultipleWidgetType should have comment or be unexported (golint)
    • Line 40: warning: exported const FileInputWidgetType should have comment or be unexported (golint)
    • Line 41: warning: exported const ClearableFileInputWidgetType should have comment or be unexported (golint)
    • Line 42: warning: exported const MultipleHiddenInputWidgetType should have comment or be unexported (golint)
    • Line 43: warning: exported const SplitDateTimeWidgetType should have comment or be unexported (golint)
    • Line 44: warning: exported const SplitHiddenDateTimeWidgetType should have comment or be unexported (golint)
    • Line 45: warning: exported const SelectDateWidgetType should have comment or be unexported (golint)
    • Line 46: warning: exported const ChooseFromSelectWidgetType should have comment or be unexported (golint)
    • Line 47: warning: exported const FkLinkWidgetType should have comment or be unexported (golint)
    • Line 49: warning: exported type WidgetData should have comment or be unexported (golint)
    • Line 50: warning: exported type IWidget should have comment or be unexported (golint)
    • Line 90: warning: exported function GetWidgetByWidgetType should have comment or be unexported (golint)
    • Line 177: warning: exported type Widget should have comment or be unexported (golint)
    • Line 198: warning: exported method Widget.GetRenderer should have comment or be unexported (golint)
    • Line 202: warning: exported method Widget.GetFieldDisplayName should have comment or be unexported (golint)
    • Line 206: warning: exported method Widget.GetName should have comment or be unexported (golint)
    • Line 210: warning: exported method Widget.SetValueConfigured should have comment or be unexported (golint)
    • Line 214: warning: exported method Widget.SetPrefix should have comment or be unexported (golint)
    • Line 218: warning: exported method Widget.IsReadOnly should have comment or be unexported (golint)
    • Line 222: warning: exported method Widget.IsValueConfigured should have comment or be unexported (golint)
    • Line 226: warning: exported method Widget.CloneAllOtherImportantSettings should have comment or be unexported (golint)
    • Line 231: warning: exported method Widget.IsValueChanged should have comment or be unexported (golint)
    • Line 235: warning: exported method Widget.SetPopulate should have comment or be unexported (golint)
    • Line 239: warning: exported method Widget.GetPopulate should have comment or be unexported (golint)
    • Line 243: warning: exported method Widget.SetRequired should have comment or be unexported (golint)
    • Line 247: warning: exported method Widget.SetHelpText should have comment or be unexported (golint)
    • Line 251: warning: exported method Widget.RenderForAdmin should have comment or be unexported (golint)
    • Line 255: warning: exported method Widget.SetShowOnlyHTMLInput should have comment or be unexported (golint)
    • Line 259: warning: exported method Widget.SetTemplateName should have comment or be unexported (golint)
    • Line 263: warning: exported method Widget.SetOutputValue should have comment or be unexported (golint)
    • Line 268: warning: exported method Widget.GetOutputValue should have comment or be unexported (golint)
    • Line 272: warning: exported method Widget.SetErrors should have comment or be unexported (golint)
    • Line 276: warning: exported method Widget.InitializeAttrs should have comment or be unexported (golint)
    • Line 282: warning: exported method Widget.SetBaseFuncMap should have comment or be unexported (golint)
    • Line 286: warning: exported method Widget.IDForLabel should have comment or be unexported (golint)
    • Line 290: warning: exported method Widget.SetFieldDisplayName should have comment or be unexported (golint)
    • Line 294: warning: exported method Widget.SetReadonly should have comment or be unexported (golint)
    • Line 298: warning: exported method Widget.GetWidgetType should have comment or be unexported (golint)
    • Line 302: warning: exported method Widget.GetTemplateName should have comment or be unexported (golint)
    • Line 306: warning: exported method Widget.ProceedForm should have comment or be unexported (golint)
    • Line 322: warning: exported method Widget.RenderUsingRenderer should have comment or be unexported (golint)
    • Line 326: warning: exported method Widget.SetAttr should have comment or be unexported (golint)
    • Line 333: warning: exported method Widget.SetName should have comment or be unexported (golint)
    • Line 337: warning: exported method Widget.GetAttrs should have comment or be unexported (golint)
    • Line 344: warning: exported method Widget.SetValue should have comment or be unexported (golint)
    • Line 348: warning: exported method Widget.GetValue should have comment or be unexported (golint)
    • Line 352: warning: exported method Widget.GetHTMLInputName should have comment or be unexported (golint)
    • Line 359: warning: exported method Widget.Render should have comment or be unexported (golint)
    • Line 367: warning: exported method Widget.GetDataForRendering should have comment or be unexported (golint)
    • Line 389: warning: exported function RenderWidget should have comment or be unexported (golint)
    • Line 406: warning: exported type TextWidget should have comment or be unexported (golint)
    • Line 410: warning: exported method TextWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 414: warning: exported method TextWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 425: warning: exported method TextWidget.Render should have comment or be unexported (golint)
    • Line 433: warning: exported type DynamicWidget should have comment or be unexported (golint)
    • Line 439: warning: exported method DynamicWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 443: warning: exported method DynamicWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 447: warning: exported method DynamicWidget.Render should have comment or be unexported (golint)
    • Line 476: warning: exported method DynamicWidget.ProceedForm should have comment or be unexported (golint)
    • Line 504: warning: exported type FkLinkWidget should have comment or be unexported (golint)
    • Line 509: warning: exported method FkLinkWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 513: warning: exported method FkLinkWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 524: warning: exported method FkLinkWidget.Render should have comment or be unexported (golint)
    • Line 534: warning: exported type NumberWidget should have comment or be unexported (golint)
    • Line 539: warning: exported method NumberWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 543: warning: exported method NumberWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 554: warning: exported method NumberWidget.Render should have comment or be unexported (golint)
    • Line 562: warning: exported method NumberWidget.ProceedForm should have comment or be unexported (golint)
    • Line 581: warning: exported method NumberWidget.TransformValueForOutput should have comment or be unexported (golint)
    • Line 611: warning: exported type EmailWidget should have comment or be unexported (golint)
    • Line 615: warning: exported method EmailWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 619: warning: exported method EmailWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 630: warning: exported method EmailWidget.Render should have comment or be unexported (golint)
    • Line 638: warning: exported method EmailWidget.ProceedForm should have comment or be unexported (golint)
    • Line 657: warning: exported type URLWidget should have comment or be unexported (golint)
    • Line 667: warning: exported method URLWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 671: warning: exported method URLWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 682: warning: exported method URLWidget.Render should have comment or be unexported (golint)
    • Line 703: warning: exported method URLWidget.ProceedForm should have comment or be unexported (golint)
    • Line 729: warning: exported type PasswordWidget should have comment or be unexported (golint)
    • Line 733: warning: exported method PasswordWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 737: warning: exported method PasswordWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 748: warning: exported method PasswordWidget.Render should have comment or be unexported (golint)
    • Line 758: warning: exported method PasswordWidget.ProceedForm should have comment or be unexported (golint)
    • Line 780: warning: exported type HiddenWidget should have comment or be unexported (golint)
    • Line 784: warning: exported method HiddenWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 788: warning: exported method HiddenWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 799: warning: exported method HiddenWidget.Render should have comment or be unexported (golint)
    • Line 807: warning: exported method HiddenWidget.ProceedForm should have comment or be unexported (golint)
    • Line 823: warning: exported type DateWidget should have comment or be unexported (golint)
    • Line 828: warning: exported method DateWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 832: warning: exported method DateWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 843: warning: exported method DateWidget.Render should have comment or be unexported (golint)
    • Line 854: warning: exported method DateWidget.ProceedForm should have comment or be unexported (golint)
    • Line 874: warning: exported type DateTimeWidget should have comment or be unexported (golint)
    • Line 879: warning: exported method DateTimeWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 883: warning: exported method DateTimeWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 894: warning: exported method DateTimeWidget.Render should have comment or be unexported (golint)
    • Line 923: warning: exported method DateTimeWidget.ProceedForm should have comment or be unexported (golint)
    • Line 943: warning: exported type TimeWidget should have comment or be unexported (golint)
    • Line 948: warning: exported method TimeWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 952: warning: exported method TimeWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 963: warning: exported method TimeWidget.Render should have comment or be unexported (golint)
    • Line 974: warning: exported method TimeWidget.ProceedForm should have comment or be unexported (golint)
    • Line 994: warning: exported type TextareaWidget should have comment or be unexported (golint)
    • Line 998: warning: exported method TextareaWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1002: warning: exported method TextareaWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1013: warning: exported method TextareaWidget.Render should have comment or be unexported (golint)
    • Line 1021: warning: exported method TextareaWidget.ProceedForm should have comment or be unexported (golint)
    • Line 1037: warning: exported type CheckboxWidget should have comment or be unexported (golint)
    • Line 1041: warning: exported method CheckboxWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1045: warning: exported method CheckboxWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1056: warning: exported method CheckboxWidget.SetValue should have comment or be unexported (golint)
    • Line 1061: warning: exported method CheckboxWidget.Render should have comment or be unexported (golint)
    • Line 1086: warning: exported method CheckboxWidget.ProceedForm should have comment or be unexported (golint)
    • Line 1099: warning: exported type SelectOptGroup should have comment or be unexported (golint)
    • Line 1106: warning: exported type SelectOptGroupStringified should have comment or be unexported (golint)
    • Line 1114: warning: exported type SelectWidget should have comment or be unexported (golint)
    • Line 1121: warning: exported method SelectWidget.CloneAllOtherImportantSettings should have comment or be unexported (golint)
    • Line 1129: warning: exported method SelectWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1133: warning: exported method SelectWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1144: warning: exported method SelectWidget.GetDataForRendering should have comment or be unexported (golint)
    • Line 1195: warning: exported method SelectWidget.Render should have comment or be unexported (golint)
    • Line 1203: warning: exported method SelectWidget.ProceedForm should have comment or be unexported (golint)
    • Line 1247: warning: exported type ForeignKeyWidget should have comment or be unexported (golint)
    • Line 1257: warning: exported method ForeignKeyWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1261: warning: exported method ForeignKeyWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1272: warning: exported method ForeignKeyWidget.CloneAllOtherImportantSettings should have comment or be unexported (golint)
    • Line 1282: warning: exported method ForeignKeyWidget.GetDataForRendering should have comment or be unexported (golint)
    • Line 1346: warning: exported method ForeignKeyWidget.GetDbHandler should have comment or be unexported (golint)
    • Line 1353: warning: exported method ForeignKeyWidget.BuildChoices should have comment or be unexported (golint)
    • Line 1371: warning: exported method ForeignKeyWidget.Render should have comment or be unexported (golint)
    • Line 1383: warning: exported method ForeignKeyWidget.ProceedForm should have comment or be unexported (golint)
    • Line 1436: warning: exported type ContentTypeSelectorWidget should have comment or be unexported (golint)
    • Line 1442: warning: exported method ContentTypeSelectorWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1446: warning: exported method ContentTypeSelectorWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1454: warning: exported method ContentTypeSelectorWidget.PopulateSelectorOptions should have comment or be unexported (golint)
    • Line 1480: warning: exported method ContentTypeSelectorWidget.GetDataForRendering should have comment or be unexported (golint)
    • Line 1533: warning: exported method ContentTypeSelectorWidget.Render should have comment or be unexported (golint)
    • Line 1541: warning: exported method ContentTypeSelectorWidget.ProceedForm should have comment or be unexported (golint)
    • Line 1559: warning: exported type NullBooleanWidget should have comment or be unexported (golint)
    • Line 1564: warning: exported method NullBooleanWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1568: warning: exported method NullBooleanWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1579: warning: exported method NullBooleanWidget.GetOptGroups should have comment or be unexported (golint)
    • Line 1596: warning: exported method NullBooleanWidget.GetDataForRendering should have comment or be unexported (golint)
    • Line 1623: warning: exported method NullBooleanWidget.Render should have comment or be unexported (golint)
    • Line 1631: warning: exported method NullBooleanWidget.ProceedForm should have comment or be unexported (golint)
    • Line 1662: warning: exported type SelectMultipleWidget should have comment or be unexported (golint)
    • Line 1667: warning: exported method SelectMultipleWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1671: warning: exported method SelectMultipleWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1682: warning: exported method SelectMultipleWidget.GetDataForRendering should have comment or be unexported (golint)
    • Line 1710: warning: exported method SelectMultipleWidget.Render should have comment or be unexported (golint)
    • Line 1718: warning: exported method SelectMultipleWidget.ProceedForm should have comment or be unexported (golint)
    • Line 1749: warning: exported type RadioOptGroup should have comment or be unexported (golint)
    • Line 1756: warning: exported type RadioOptGroupStringified should have comment or be unexported (golint)
    • Line 1771: warning: exported type RadioSelectWidget should have comment or be unexported (golint)
    • Line 1778: warning: exported method RadioSelectWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1782: warning: exported method RadioSelectWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1793: warning: exported method RadioSelectWidget.SetID should have comment or be unexported (golint)
    • Line 1797: warning: exported method RadioSelectWidget.GetDataForRendering should have comment or be unexported (golint)
    • Line 1829: warning: exported method RadioSelectWidget.Render should have comment or be unexported (golint)
    • Line 1837: warning: exported method RadioSelectWidget.ProceedForm should have comment or be unexported (golint)
    • Line 1868: warning: exported type CheckboxSelectMultipleWidget should have comment or be unexported (golint)
    • Line 1875: warning: exported method CheckboxSelectMultipleWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1879: warning: exported method CheckboxSelectMultipleWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1890: warning: exported method CheckboxSelectMultipleWidget.SetID should have comment or be unexported (golint)
    • Line 1894: warning: exported method CheckboxSelectMultipleWidget.GetDataForRendering should have comment or be unexported (golint)
    • Line 1926: warning: exported method CheckboxSelectMultipleWidget.Render should have comment or be unexported (golint)
    • Line 1934: warning: exported method CheckboxSelectMultipleWidget.ProceedForm should have comment or be unexported (golint)
    • Line 1965: warning: exported type FileWidget should have comment or be unexported (golint)
    • Line 1972: warning: exported method FileWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 1976: warning: exported method FileWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 1987: warning: exported method FileWidget.Render should have comment or be unexported (golint)
    • Line 2005: warning: exported method FileWidget.ProceedForm should have comment or be unexported (golint)
    • Line 2050: warning: exported type URLValue should have comment or be unexported (golint)
    • Line 2054: warning: exported type ClearableFileWidget should have comment or be unexported (golint)
    • Line 2067: warning: exported method ClearableFileWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 2071: warning: exported method ClearableFileWidget.SetID should have comment or be unexported (golint)
    • Line 2075: warning: exported method ClearableFileWidget.IsInitial should have comment or be unexported (golint)
    • Line 2079: warning: exported method ClearableFileWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 2090: warning: exported method ClearableFileWidget.Render should have comment or be unexported (golint)
    • Line 2115: warning: exported method ClearableFileWidget.ProceedForm should have comment or be unexported (golint)
    • Line 2153: warning: exported type MultipleInputHiddenWidget should have comment or be unexported (golint)
    • Line 2157: warning: exported method MultipleInputHiddenWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 2161: warning: exported method MultipleInputHiddenWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 2172: warning: exported method MultipleInputHiddenWidget.Render should have comment or be unexported (golint)
    • Line 2206: warning: exported method MultipleInputHiddenWidget.ProceedForm should have comment or be unexported (golint)
    • Line 2219: warning: exported type ChooseFromSelectWidget should have comment or be unexported (golint)
    • Line 2237: warning: exported method ChooseFromSelectWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 2241: warning: exported method ChooseFromSelectWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 2252: warning: exported method ChooseFromSelectWidget.Render should have comment or be unexported (golint)
    • Line 2345: warning: exported method ChooseFromSelectWidget.ProceedForm should have comment or be unexported (golint)
    • Line 2357: warning: exported type SplitDateTimeWidget should have comment or be unexported (golint)
    • Line 2369: warning: exported method SplitDateTimeWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 2373: warning: exported method SplitDateTimeWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 2384: warning: exported method SplitDateTimeWidget.Render should have comment or be unexported (golint)
    • Line 2443: warning: exported method SplitDateTimeWidget.ProceedForm should have comment or be unexported (golint)
    • Line 2473: warning: exported type SplitHiddenDateTimeWidget should have comment or be unexported (golint)
    • Line 2483: warning: exported method SplitHiddenDateTimeWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 2487: warning: exported method SplitHiddenDateTimeWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 2498: warning: exported method SplitHiddenDateTimeWidget.Render should have comment or be unexported (golint)
    • Line 2547: warning: exported method SplitHiddenDateTimeWidget.ProceedForm should have comment or be unexported (golint)
    • Line 2577: warning: exported type SelectDateWidget should have comment or be unexported (golint)
    • Line 2588: warning: exported method SelectDateWidget.GetWidgetType should have comment or be unexported (golint)
    • Line 2592: warning: exported method SelectDateWidget.GetTemplateName should have comment or be unexported (golint)
    • Line 2603: warning: exported method SelectDateWidget.Render should have comment or be unexported (golint)
    • Line 2750: warning: exported method SelectDateWidget.ProceedForm should have comment or be unexported (golint)
    • Line 2789: warning: exported function MakeMonthsSelect should have comment or be unexported (golint)
    • Line 2842: warning: exported function GetWidgetFromFieldTypeAndGormField should have comment or be unexported (golint)
    • core/regex.go
    • Line 8: warning: exported var ASCIIRegex should have comment or be unexported (golint)
    • Line 9: warning: exported var WhitespaceRegex should have comment or be unexported (golint)
    • Line 11: warning: exported function PrepareStringToBeUsedForHTMLID should have comment or be unexported (golint)
    • microservice_example.go
    • Line 1: warning: package comment should be of the form "Package gomonolith ..." (golint)
    • Line 1: warning: package comment should not have leading space (golint)
    • Line 53: warning: exported type MicroserviceExample should have comment or be unexported (golint)
    • Line 71: warning: exported type MicroserviceExampleCommand should have comment or be unexported (golint)
    • Line 74: warning: exported method MicroserviceExampleCommand.Proceed should have comment or be unexported (golint)
    • Line 99: warning: exported method MicroserviceExampleCommand.GetHelpText should have comment or be unexported (golint)
    • Line 103: warning: exported type MicroserviceExampleStartOptions should have comment or be unexported (golint)
    • Line 107: warning: exported type MicroserviceExampleStartCommand should have comment or be unexported (golint)
    • Line 110: warning: exported method MicroserviceExampleStartCommand.Proceed should have comment or be unexported (golint)
    • Line 131: warning: exported method MicroserviceExampleStartCommand.GetHelpText should have comment or be unexported (golint)
    • migrate.go
    • Line 21: warning: exported type Migration should have comment or be unexported (golint)
    • Line 27: warning: exported type MigrateCommand should have comment or be unexported (golint)
    • Line 30: warning: exported method MigrateCommand.Proceed should have comment or be unexported (golint)
    • Line 54: warning: exported method MigrateCommand.GetHelpText should have comment or be unexported (golint)
    • Line 70: warning: exported type CreateMigrationOptions should have comment or be unexported (golint)
    • Line 76: warning: exported type CreateMigration should have comment or be unexported (golint)
    • Line 79: warning: exported method CreateMigration.Proceed should have comment or be unexported (golint)
    • Line 305: warning: exported method CreateMigration.GetHelpText should have comment or be unexported (golint)
    • Line 322: warning: exported type UpMigrationOptions should have comment or be unexported (golint)
    • Line 325: warning: exported type UpMigration should have comment or be unexported (golint)
    • Line 328: warning: exported method UpMigration.Proceed should have comment or be unexported (golint)
    • Line 376: warning: exported method UpMigration.GetHelpText should have comment or be unexported (golint)
    • Line 380: warning: exported type DownMigrationOptions should have comment or be unexported (golint)
    • Line 384: warning: exported type DownMigration should have comment or be unexported (golint)
    • Line 387: warning: exported method DownMigration.Proceed should have comment or be unexported (golint)
    • Line 440: warning: exported method DownMigration.GetHelpText should have comment or be unexported (golint)
    • Line 444: warning: exported type DetermineConflictsMigration should have comment or be unexported (golint)
    • Line 447: warning: exported method DetermineConflictsMigration.Proceed should have comment or be unexported (golint)
    • Line 473: warning: exported method DetermineConflictsMigration.GetHelpText should have comment or be unexported (golint)
    • core/migration_interfaces.go
    • Line 10: warning: exported type IMigrationRegistry should have comment or be unexported (golint)
    • Line 16: warning: exported type IMigration should have comment or be unexported (golint)
    • Line 24: warning: exported type IMigrationNode should have comment or be unexported (golint)
    • Line 41: warning: exported type IMigrationTree should have comment or be unexported (golint)
    • Line 50: warning: exported function GetBluePrintNameFromMigrationName should have comment or be unexported (golint)
    • Line 54: warning: exported type MigrationNode should have comment or be unexported (golint)
    • Line 63: warning: exported method MigrationNode.IsDummy should have comment or be unexported (golint)
    • Line 67: warning: exported method MigrationNode.Apply should have comment or be unexported (golint)
    • Line 75: warning: exported method MigrationNode.Downgrade should have comment or be unexported (golint)
    • Line 83: warning: exported method MigrationNode.GetMigration should have comment or be unexported (golint)
    • Line 87: warning: exported method MigrationNode.GetChildren should have comment or be unexported (golint)
    • Line 91: warning: exported method MigrationNode.GetDeps should have comment or be unexported (golint)
    • Line 95: warning: exported method MigrationNode.GetChildrenCount should have comment or be unexported (golint)
    • Line 99: warning: exported method MigrationNode.IsApplied should have comment or be unexported (golint)
    • Line 103: warning: exported method MigrationNode.SetItAsRoot should have comment or be unexported (golint)
    • Line 107: warning: exported method MigrationNode.IsRoot should have comment or be unexported (golint)
    • Line 111: warning: exported method MigrationNode.AddChild should have comment or be unexported (golint)
    • Line 115: warning: exported method MigrationNode.AddDep should have comment or be unexported (golint)
    • Line 119: warning: exported method MigrationNode.TraverseDeps should have comment or be unexported (golint)
    • Line 134: warning: exported method MigrationNode.TraverseChildren should have comment or be unexported (golint)
    • Line 156: warning: exported function NewMigrationNode should have comment or be unexported (golint)
    • Line 175: warning: exported function NewMigrationRootNode should have comment or be unexported (golint)
    • Line 186: warning: exported type MigrationTree should have comment or be unexported (golint)
    • Line 192: warning: exported method MigrationTree.TreeBuilt should have comment or be unexported (golint)
    • Line 196: warning: exported method MigrationTree.IsTreeBuilt should have comment or be unexported (golint)
    • Line 200: warning: exported method MigrationTree.GetNodeByMigrationID should have comment or be unexported (golint)
    • Line 208: warning: exported method MigrationTree.AddNode should have comment or be unexported (golint)
    • Line 218: warning: exported method MigrationTree.GetRoot should have comment or be unexported (golint)
    • Line 222: warning: exported method MigrationTree.SetRoot should have comment or be unexported (golint)
    • Line 227: warning: exported type MigrationList should have comment or be unexported (golint)
    • Line 235: warning: exported type MigrationDepList should have comment or be unexported (golint)
    • Line 243: warning: exported type MigrationRegistry should have comment or be unexported (golint)
    • Line 247: warning: exported method MigrationRegistry.AddMigration should have comment or be unexported (golint)
    • Line 251: warning: exported method MigrationRegistry.GetByName should have comment or be unexported (golint)
    • Line 259: warning: exported method MigrationRegistry.GetSortedMigrations should have comment or be unexported (golint)
    • Line 272: warning: exported function NewMigrationRegistry should have comment or be unexported (golint)
    • Line 278: warning: exported function NewMigrationTree should have comment or be unexported (golint)
    • contenttype.go
    • Line 9: warning: exported type ContentTypeCommand should have comment or be unexported (golint)
    • Line 12: warning: exported method ContentTypeCommand.Proceed should have comment or be unexported (golint)
    • Line 38: warning: exported method ContentTypeCommand.GetHelpText should have comment or be unexported (golint)
    • Line 42: warning: exported type SyncContentTypes should have comment or be unexported (golint)
    • Line 45: warning: exported method SyncContentTypes.Proceed should have comment or be unexported (golint)
    • Line 85: warning: exported method SyncContentTypes.GetHelpText should have comment or be unexported (golint)
    • blueprint/sessions/interfaces/db.go
    • Line 8: warning: exported type DbSession should have comment or be unexported (golint)
    • Line 12: warning: exported method DbSession.GetName should have comment or be unexported (golint)
    • Line 16: warning: exported method DbSession.Set should have comment or be unexported (golint)
    • Line 20: warning: exported method DbSession.SetUser should have comment or be unexported (golint)
    • Line 26: warning: exported method DbSession.Get should have comment or be unexported (golint)
    • Line 30: warning: exported method DbSession.ClearAll should have comment or be unexported (golint)
    • Line 34: warning: exported method DbSession.ExpiresOn should have comment or be unexported (golint)
    • Line 38: warning: exported method DbSession.GetKey should have comment or be unexported (golint)
    • Line 42: warning: exported method DbSession.GetUser should have comment or be unexported (golint)
    • Line 55: warning: exported method DbSession.GetByKey should have comment or be unexported (golint)
    • Line 68: warning: exported method DbSession.Create should have comment or be unexported (golint)
    • Line 78: warning: exported method DbSession.Delete should have comment or be unexported (golint)
    • Line 85: warning: exported method DbSession.IsExpired should have comment or be unexported (golint)
    • Line 92: warning: exported method DbSession.Save should have comment or be unexported (golint)
    • superadmin.go
    • Line 15: warning: exported type SuperadminCommand should have comment or be unexported (golint)
    • Line 18: warning: exported method SuperadminCommand.Proceed should have comment or be unexported (golint)
    • Line 42: warning: exported method SuperadminCommand.GetHelpText should have comment or be unexported (golint)
    • Line 46: warning: exported type SuperadminCommandOptions should have comment or be unexported (golint)
    • Line 53: warning: exported type CreateSuperadmin should have comment or be unexported (golint)
    • Line 56: warning: exported method CreateSuperadmin.Proceed should have comment or be unexported (golint)
    • Line 130: warning: exported method CreateSuperadmin.GetHelpText should have comment or be unexported (golint)
    • swagger.go
    • Line 12: warning: exported type SwaggerCommand should have comment or be unexported (golint)
    • Line 15: warning: exported method SwaggerCommand.Proceed should have comment or be unexported (golint)
    • Line 40: warning: exported method SwaggerCommand.GetHelpText should have comment or be unexported (golint)
    • Line 44: warning: exported type ServeSwaggerServerOptions should have comment or be unexported (golint)
    • Line 47: warning: exported type ServeSwaggerServer should have comment or be unexported (golint)
    • Line 50: warning: exported method ServeSwaggerServer.Proceed should have comment or be unexported (golint)
    • Line 77: warning: exported method ServeSwaggerServer.GetHelpText should have comment or be unexported (golint)
    • core/gorm_persistence_storage.go
    • Line 16: warning: exported function NewGormAdminPage should have comment or be unexported (golint)
    • Line 142: warning: exported type GormPersistenceStorage should have comment or be unexported (golint)
    • Line 147: warning: exported function NewGormPersistenceStorage should have comment or be unexported (golint)
    • Line 151: warning: exported method GormPersistenceStorage.Association should have comment or be unexported (golint)
    • Line 159: warning: exported method GormPersistenceStorage.Model should have comment or be unexported (golint)
    • Line 167: warning: exported method GormPersistenceStorage.Clauses should have comment or be unexported (golint)
    • Line 175: warning: exported method GormPersistenceStorage.GetCurrentDB should have comment or be unexported (golint)
    • Line 179: warning: exported method GormPersistenceStorage.Table should have comment or be unexported (golint)
    • Line 187: warning: exported method GormPersistenceStorage.Distinct should have comment or be unexported (golint)
    • Line 195: warning: exported method GormPersistenceStorage.Select should have comment or be unexported (golint)
    • Line 203: warning: exported method GormPersistenceStorage.Omit should have comment or be unexported (golint)
    • Line 211: warning: exported method GormPersistenceStorage.Where should have comment or be unexported (golint)
    • Line 219: warning: exported method GormPersistenceStorage.Not should have comment or be unexported (golint)
    • Line 227: warning: exported method GormPersistenceStorage.Or should have comment or be unexported (golint)
    • Line 235: warning: exported method GormPersistenceStorage.Joins should have comment or be unexported (golint)
    • Line 243: warning: exported method GormPersistenceStorage.Group should have comment or be unexported (golint)
    • Line 251: warning: exported method GormPersistenceStorage.Having should have comment or be unexported (golint)
    • Line 259: warning: exported method GormPersistenceStorage.Order should have comment or be unexported (golint)
    • Line 267: warning: exported method GormPersistenceStorage.Limit should have comment or be unexported (golint)
    • Line 275: warning: exported method GormPersistenceStorage.Offset should have comment or be unexported (golint)
    • Line 283: warning: exported method GormPersistenceStorage.Scopes should have comment or be unexported (golint)
    • Line 291: warning: exported method GormPersistenceStorage.Preload should have comment or be unexported (golint)
    • Line 299: warning: exported method GormPersistenceStorage.Attrs should have comment or be unexported (golint)
    • Line 307: warning: exported method GormPersistenceStorage.Assign should have comment or be unexported (golint)
    • Line 315: warning: exported method GormPersistenceStorage.Unscoped should have comment or be unexported (golint)
    • Line 323: warning: exported method GormPersistenceStorage.Raw should have comment or be unexported (golint)
    • Line 331: warning: exported method GormPersistenceStorage.Migrator should have comment or be unexported (golint)
    • Line 335: warning: exported method GormPersistenceStorage.AutoMigrate should have comment or be unexported (golint)
    • Line 339: warning: exported method GormPersistenceStorage.Session should have comment or be unexported (golint)
    • Line 347: warning: exported method GormPersistenceStorage.WithContext should have comment or be unexported (golint)
    • Line 355: warning: exported method GormPersistenceStorage.Debug should have comment or be unexported (golint)
    • Line 363: warning: exported method GormPersistenceStorage.Set should have comment or be unexported (golint)
    • Line 371: warning: exported method GormPersistenceStorage.Get should have comment or be unexported (golint)
    • Line 375: warning: exported method GormPersistenceStorage.InstanceSet should have comment or be unexported (golint)
    • Line 383: warning: exported method GormPersistenceStorage.InstanceGet should have comment or be unexported (golint)
    • Line 387: warning: exported method GormPersistenceStorage.AddError should have comment or be unexported (golint)
    • Line 391: warning: exported method GormPersistenceStorage.DB should have comment or be unexported (golint)
    • Line 395: warning: exported method GormPersistenceStorage.SetupJoinTable should have comment or be unexported (golint)
    • Line 399: warning: exported method GormPersistenceStorage.Use should have comment or be unexported (golint)
    • Line 403: warning: exported method GormPersistenceStorage.Create should have comment or be unexported (golint)
    • Line 411: warning: exported method GormPersistenceStorage.CreateInBatches should have comment or be unexported (golint)
    • Line 419: warning: exported method GormPersistenceStorage.Save should have comment or be unexported (golint)
    • Line 427: warning: exported method GormPersistenceStorage.First should have comment or be unexported (golint)
    • Line 435: warning: exported method GormPersistenceStorage.Take should have comment or be unexported (golint)
    • Line 443: warning: exported method GormPersistenceStorage.Last should have comment or be unexported (golint)
    • Line 451: warning: exported method GormPersistenceStorage.Find should have comment or be unexported (golint)
    • Line 459: warning: exported method GormPersistenceStorage.FindInBatches should have comment or be unexported (golint)
    • Line 467: warning: exported method GormPersistenceStorage.FirstOrInit should have comment or be unexported (golint)
    • Line 475: warning: exported method GormPersistenceStorage.FirstOrCreate should have comment or be unexported (golint)
    • Line 483: warning: exported method GormPersistenceStorage.Update should have comment or be unexported (golint)
    • Line 491: warning: exported method GormPersistenceStorage.Updates should have comment or be unexported (golint)
    • Line 499: warning: exported method GormPersistenceStorage.UpdateColumn should have comment or be unexported (golint)
    • Line 507: warning: exported method GormPersistenceStorage.UpdateColumns should have comment or be unexported (golint)
    • Line 515: warning: exported method GormPersistenceStorage.Delete should have comment or be unexported (golint)
    • Line 523: warning: exported method GormPersistenceStorage.Count should have comment or be unexported (golint)
    • Line 531: warning: exported method GormPersistenceStorage.Row should have comment or be unexported (golint)
    • Line 535: warning: exported method GormPersistenceStorage.Rows should have comment or be unexported (golint)
    • Line 539: warning: exported method GormPersistenceStorage.Scan should have comment or be unexported (golint)
    • Line 547: warning: exported method GormPersistenceStorage.Pluck should have comment or be unexported (golint)
    • Line 555: warning: exported method GormPersistenceStorage.ScanRows should have comment or be unexported (golint)
    • Line 559: warning: exported method GormPersistenceStorage.Transaction should have comment or be unexported (golint)
    • Line 563: warning: exported method GormPersistenceStorage.Begin should have comment or be unexported (golint)
    • Line 571: warning: exported method GormPersistenceStorage.Commit should have comment or be unexported (golint)
    • Line 579: warning: exported method GormPersistenceStorage.Rollback should have comment or be unexported (golint)
    • Line 587: warning: exported method GormPersistenceStorage.SavePoint should have comment or be unexported (golint)
    • Line 595: warning: exported method GormPersistenceStorage.RollbackTo should have comment or be unexported (golint)
    • Line 603: warning: exported method GormPersistenceStorage.Exec should have comment or be unexported (golint)
    • Line 611: warning: exported method GormPersistenceStorage.GetLastError should have comment or be unexported (golint)
    • Line 617: warning: exported method GormPersistenceStorage.LoadDataForModelByID should have comment or be unexported (golint)
    • Line 623: warning: exported type GormAdminFilterObjects should have comment or be unexported (golint)
    • Line 633: warning: exported method GormAdminFilterObjects.SetLastError should have comment or be unexported (golint)
    • Line 639: warning: exported method GormAdminFilterObjects.AddNeededJoinsIfNecessary should have comment or be unexported (golint)
    • Line 652: warning: exported method GormAdminFilterObjects.StoreNeededJoin should have comment or be unexported (golint)
    • Line 659: warning: exported method GormAdminFilterObjects.GetLastError should have comment or be unexported (golint)
    • Line 665: warning: exported method GormAdminFilterObjects.FilterQs should have comment or be unexported (golint)
    • Line 676: warning: exported method GormAdminFilterObjects.Search should have comment or be unexported (golint)
    • Line 772: warning: exported method GormAdminFilterObjects.GetPaginatedQuerySet should have comment or be unexported (golint)
    • Line 776: warning: exported method GormAdminFilterObjects.GetFullQuerySet should have comment or be unexported (golint)
    • Line 780: warning: exported method GormAdminFilterObjects.SetFullQuerySet should have comment or be unexported (golint)
    • Line 784: warning: exported method GormAdminFilterObjects.GetInitialQuerySet should have comment or be unexported (golint)
    • Line 788: warning: exported method GormAdminFilterObjects.SetInitialQuerySet should have comment or be unexported (golint)
    • Line 792: warning: exported method GormAdminFilterObjects.GetCurrentModel should have comment or be unexported (golint)
    • Line 796: warning: exported method GormAdminFilterObjects.GetDatabase should have comment or be unexported (golint)
    • Line 800: warning: exported method GormAdminFilterObjects.SetPaginatedQuerySet should have comment or be unexported (golint)
    • Line 804: warning: exported method GormAdminFilterObjects.GetDB should have comment or be unexported (golint)
    • Line 808: warning: exported method GormAdminFilterObjects.WithTransaction should have comment or be unexported (golint)
    • Line 820: warning: exported method GormAdminFilterObjects.LoadDataForModelByID should have comment or be unexported (golint)
    • Line 826: warning: exported method GormAdminFilterObjects.SaveModel should have comment or be unexported (golint)
    • Line 832: warning: exported method GormAdminFilterObjects.CreateNew should have comment or be unexported (golint)
    • Line 838: warning: exported method GormAdminFilterObjects.FilterByMultipleIds should have comment or be unexported (golint)
    • Line 843: warning: exported method GormAdminFilterObjects.RemoveModelPermanently should have comment or be unexported (golint)
    • Line 849: warning: exported method GormAdminFilterObjects.SortBy should have comment or be unexported (golint)
    • Line 858: warning: exported method GormAdminFilterObjects.GetPaginated should have comment or be unexported (golint)
    • Line 892: warning: exported method GormAdminFilterObjects.IterateThroughWholeQuerySet should have comment or be unexported (golint)
    • core/persistence_storage_interfaces.go
    • Line 11: warning: exported type IPersistenceMigrator should have comment or be unexported (golint)
    • Line 37: warning: exported type IPersistenceAssociation should have comment or be unexported (golint)
    • Line 46: warning: exported type IPersistenceIterateRow should have comment or be unexported (golint)
    • Line 51: warning: exported type IPersistenceIterateRows should have comment or be unexported (golint)
    • Line 61: warning: exported type IPersistenceStorage should have comment or be unexported (golint)
    • blueprint/settings/models/models.go
    • Line 57: warning: exported function HumanizeDataType should have comment or be unexported (golint)
    • Line 78: warning: exported function DataTypeFromString should have comment or be unexported (golint)
    • Line 112: warning: exported method Setting.GetRealWidget should have comment or be unexported (golint)
    • blueprint/auth/auth.go
    • Line 15: warning: exported type Blueprint should have comment or be unexported (golint)
    • Line 20: warning: exported method Blueprint.InitRouter should have comment or be unexported (golint)
    • Line 117: warning: exported method Blueprint.InitApp should have comment or be unexported (golint)
    • Line 120: warning: exported var ConcreteBlueprint should have comment or be unexported (golint)
    • tests/routing/setup_data.go
    • Line 8: warning: exported type BlueprintRouting should have comment or be unexported (golint)
    • Line 12: warning: exported var ConcreteBlueprint should have comment or be unexported (golint)
    • Line 15: warning: exported method BlueprintRouting.InitRouter should have comment or be unexported (golint)
    • blueprint/auth/interfaces/token_with_expiration.go
    • Line 16: warning: exported type TokenWithExpirationAuthProvider should have comment or be unexported (golint)
    • Line 19: warning: exported method TokenWithExpirationAuthProvider.GetUserFromRequest should have comment or be unexported (golint)
    • Line 31: warning: exported method TokenWithExpirationAuthProvider.Signin should have comment or be unexported (golint)
    • Line 107: warning: exported method TokenWithExpirationAuthProvider.Signup should have comment or be unexported (golint)
    • Line 168: warning: exported method TokenWithExpirationAuthProvider.Logout should have comment or be unexported (golint)
    • Line 172: warning: exported method TokenWithExpirationAuthProvider.IsAuthenticated should have comment or be unexported (golint)
    • Line 176: warning: exported method TokenWithExpirationAuthProvider.GetSession should have comment or be unexported (golint)
    • Line 180: warning: exported method TokenWithExpirationAuthProvider.GetName should have comment or be unexported (golint)
    • core/admin_breadcrumb.go
    • Line 3: warning: exported type AdminBreadcrumb should have comment or be unexported (golint)
    • Line 10: warning: exported type AdminBreadCrumbsRegistry should have comment or be unexported (golint)
    • Line 14: warning: exported method AdminBreadCrumbsRegistry.AddBreadCrumb should have comment or be unexported (golint)
    • Line 23: warning: exported method AdminBreadCrumbsRegistry.GetAll should have comment or be unexported (golint)
    • Line 34: warning: exported function NewAdminBreadCrumbsRegistry should have comment or be unexported (golint)
    • core/admin_request_parameters.go
    • Line 9: warning: exported type AdminRequestParams should have comment or be unexported (golint)
    • Line 19: warning: exported method AdminRequestParams.GetOrdering should have comment or be unexported (golint)
    • Line 23: warning: exported function NewAdminRequestParams should have comment or be unexported (golint)
    • Line 32: warning: exported function NewAdminRequestParamsFromGinContext should have comment or be unexported (golint)
    • core/form_list_editable.go
    • Line 10: warning: exported type FormListEditable should have comment or be unexported (golint)
    • Line 17: warning: exported type InlineFormListEditableCollection should have comment or be unexported (golint)
    • Line 19: warning: exported type FormListEditableCollection should have comment or be unexported (golint)
    • Line 23: warning: exported method FormListEditableCollection.AddForInline should have comment or be unexported (golint)
    • Line 30: warning: exported method FormListEditableCollection.GetForInlineAndForModel should have comment or be unexported (golint)
    • Line 34: warning: exported method FormListEditableCollection.GetForInlineNew should have comment or be unexported (golint)
    • Line 48: warning: exported method FormListEditableCollection.AddForInlineWholeCollection should have comment or be unexported (golint)
    • Line 55: warning: exported function NewFormListEditableCollection should have comment or be unexported (golint)
    • Line 59: warning: exported method FormListEditable.SetPrefix should have comment or be unexported (golint)
    • Line 66: warning: exported method FormListEditable.ExistsField should have comment or be unexported (golint)
    • Line 71: warning: exported method FormListEditable.ProceedRequest should have comment or be unexported (golint)
    • Line 123: warning: exported function NewFormListEditableForNewModelFromListDisplayRegistry should have comment or be unexported (golint)
    • Line 156: warning: exported function NewFormListEditableFromListDisplayRegistry should have comment or be unexported (golint)

ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


misspell98%

Misspell Finds commonly misspelled English words