Preparing report...

Report for go.knocknote.io/eevee

A+    Excellent!    Found 40 issues across 86 files

Tweet

gofmt100%

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

No problems detected. Good job!


go_vet100%

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

No problems detected. Good job!


gocyclo91%

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.

    • /go.knocknote.io/eevee/api/api.go
    • Line 329: warning: cyclomatic complexity 21 of function (*Generator).generateResponse() is high (> 15) (gocyclo)
    • Line 178: warning: cyclomatic complexity 18 of function (*Generator).generateRequest() is high (> 15) (gocyclo)
    • /go.knocknote.io/eevee/dao/dao.go
    • Line 1818: warning: cyclomatic complexity 28 of function (*Generator).generate() is high (> 15) (gocyclo)
    • Line 1418: warning: cyclomatic complexity 24 of function (*Generator).newMethodGenerators() is high (> 15) (gocyclo)

golint54%

Golint is a linter for Go source code.

    • /go.knocknote.io/eevee/graph/graph.go
    • Line 12: warning: a blank import should be only in a main or test package, or have a comment justifying it (golint)
    • Line 17: warning: exported type Graph should have comment or be unexported (golint)
    • Line 22: warning: exported type GraphClass should have comment or be unexported (golint)
    • Line 28: warning: exported type DependencyClass should have comment or be unexported (golint)
    • Line 33: warning: exported type DependencyMember should have comment or be unexported (golint)
    • Line 63: warning: exported function Generate should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/plugin/dao/default.go
    • Line 4: warning: should not use dot imports (golint)
    • Line 8: warning: exported type DefaultPlugin should have comment or be unexported (golint)
    • Line 11: warning: exported method DefaultPlugin.Imports should have comment or be unexported (golint)
    • Line 12: warning: exported method DefaultPlugin.StructFields should have comment or be unexported (golint)
    • Line 15: warning: exported method DefaultPlugin.ConstructorDeclare should have comment or be unexported (golint)
    • Line 16: warning: exported method DefaultPlugin.Constructor should have comment or be unexported (golint)
    • Line 17: warning: exported method DefaultPlugin.CreateDeclare should have comment or be unexported (golint)
    • Line 18: warning: exported method DefaultPlugin.Create should have comment or be unexported (golint)
    • Line 19: warning: exported method DefaultPlugin.BeforeCreate should have comment or be unexported (golint)
    • Line 20: warning: exported method DefaultPlugin.AfterCreate should have comment or be unexported (golint)
    • Line 21: warning: exported method DefaultPlugin.UpdateDeclare should have comment or be unexported (golint)
    • Line 22: warning: exported method DefaultPlugin.Update should have comment or be unexported (golint)
    • Line 23: warning: exported method DefaultPlugin.BeforeUpdate should have comment or be unexported (golint)
    • Line 24: warning: exported method DefaultPlugin.AfterUpdate should have comment or be unexported (golint)
    • Line 25: warning: exported method DefaultPlugin.DeleteDeclare should have comment or be unexported (golint)
    • Line 26: warning: exported method DefaultPlugin.Delete should have comment or be unexported (golint)
    • Line 27: warning: exported method DefaultPlugin.BeforeDelete should have comment or be unexported (golint)
    • Line 28: warning: exported method DefaultPlugin.AfterDelete should have comment or be unexported (golint)
    • Line 29: warning: exported method DefaultPlugin.FindAllDeclare should have comment or be unexported (golint)
    • Line 30: warning: exported method DefaultPlugin.FindAll should have comment or be unexported (golint)
    • Line 31: warning: exported method DefaultPlugin.BeforeFindAll should have comment or be unexported (golint)
    • Line 32: warning: exported method DefaultPlugin.AfterFindAll should have comment or be unexported (golint)
    • Line 33: warning: exported method DefaultPlugin.CountDeclare should have comment or be unexported (golint)
    • Line 34: warning: exported method DefaultPlugin.Count should have comment or be unexported (golint)
    • Line 35: warning: exported method DefaultPlugin.BeforeCount should have comment or be unexported (golint)
    • Line 36: warning: exported method DefaultPlugin.AfterCount should have comment or be unexported (golint)
    • Line 37: warning: exported method DefaultPlugin.FindByDeclare should have comment or be unexported (golint)
    • Line 38: warning: exported method DefaultPlugin.FindBy should have comment or be unexported (golint)
    • Line 39: warning: exported method DefaultPlugin.BeforeFindBy should have comment or be unexported (golint)
    • Line 40: warning: exported method DefaultPlugin.AfterFindBy should have comment or be unexported (golint)
    • Line 41: warning: exported method DefaultPlugin.FindByPluralDeclare should have comment or be unexported (golint)
    • Line 42: warning: exported method DefaultPlugin.FindByPlural should have comment or be unexported (golint)
    • Line 43: warning: exported method DefaultPlugin.BeforeFindByPlural should have comment or be unexported (golint)
    • Line 44: warning: exported method DefaultPlugin.AfterFindByPlural should have comment or be unexported (golint)
    • Line 45: warning: exported method DefaultPlugin.UpdateByDeclare should have comment or be unexported (golint)
    • Line 46: warning: exported method DefaultPlugin.UpdateBy should have comment or be unexported (golint)
    • Line 47: warning: exported method DefaultPlugin.BeforeUpdateBy should have comment or be unexported (golint)
    • Line 48: warning: exported method DefaultPlugin.AfterUpdateBy should have comment or be unexported (golint)
    • Line 49: warning: exported method DefaultPlugin.UpdateByPluralDeclare should have comment or be unexported (golint)
    • Line 50: warning: exported method DefaultPlugin.UpdateByPlural should have comment or be unexported (golint)
    • Line 51: warning: exported method DefaultPlugin.BeforeUpdateByPlural should have comment or be unexported (golint)
    • Line 52: warning: exported method DefaultPlugin.AfterUpdateByPlural should have comment or be unexported (golint)
    • Line 53: warning: exported method DefaultPlugin.DeleteByDeclare should have comment or be unexported (golint)
    • Line 54: warning: exported method DefaultPlugin.DeleteBy should have comment or be unexported (golint)
    • Line 55: warning: exported method DefaultPlugin.BeforeDeleteBy should have comment or be unexported (golint)
    • Line 56: warning: exported method DefaultPlugin.AfterDeleteBy should have comment or be unexported (golint)
    • Line 57: warning: exported method DefaultPlugin.DeleteByPluralDeclare should have comment or be unexported (golint)
    • Line 58: warning: exported method DefaultPlugin.DeleteByPlural should have comment or be unexported (golint)
    • Line 59: warning: exported method DefaultPlugin.BeforeDeleteByPlural should have comment or be unexported (golint)
    • Line 60: warning: exported method DefaultPlugin.AfterDeleteByPlural should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/types/dao.go
    • Line 7: warning: exported type SQL should have comment or be unexported (golint)
    • Line 13: warning: exported type DAOContext should have comment or be unexported (golint)
    • Line 15: warning: exported type DataAccessParam should have comment or be unexported (golint)
    • Line 23: warning: exported method DataAccessParam.Package should have comment or be unexported (golint)
    • Line 27: warning: exported method DataAccessParam.Field should have comment or be unexported (golint)
    • Line 31: warning: exported type ConstructorParam should have comment or be unexported (golint)
    • Line 37: warning: exported type ConstructorParamArgs should have comment or be unexported (golint)
    • Line 41: warning: exported type CreateParam should have comment or be unexported (golint)
    • Line 46: warning: exported type CreateParamArgs should have comment or be unexported (golint)
    • Line 51: warning: exported type UpdateParam should have comment or be unexported (golint)
    • Line 56: warning: exported type UpdateParamArgs should have comment or be unexported (golint)
    • Line 63: warning: exported type DeleteParam should have comment or be unexported (golint)
    • Line 68: warning: exported type DeleteParamArgs should have comment or be unexported (golint)
    • Line 74: warning: exported type FindParam should have comment or be unexported (golint)
    • Line 80: warning: exported type FindParamArgs should have comment or be unexported (golint)
    • Line 85: warning: exported type CountParam should have comment or be unexported (golint)
    • Line 90: warning: exported type CountParamArgs should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/plugin/eevee-request-time-plugin/dao.go
    • Line 4: warning: should not use dot imports (golint)
    • Line 9: warning: exported type DAORequestTimePlugin should have comment or be unexported (golint)
    • Line 17: warning: exported method DAORequestTimePlugin.BeforeCreate should have comment or be unexported (golint)
    • Line 45: warning: exported method DAORequestTimePlugin.BeforeUpdate should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/code/code.go
    • Line 7: warning: exported type Code should have comment or be unexported (golint)
    • Line 8: warning: exported type Dict should have comment or be unexported (golint)
    • Line 9: warning: exported type File should have comment or be unexported (golint)
    • Line 10: warning: exported type Group should have comment or be unexported (golint)
    • Line 11: warning: exported type Options should have comment or be unexported (golint)
    • Line 12: warning: exported type Statement should have comment or be unexported (golint)
    • Line 15: warning: exported var DictFunc should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/test/test.go
    • Line 20: warning: exported type Generator should have comment or be unexported (golint)
    • Line 26: warning: exported function NewGenerator should have comment or be unexported (golint)
    • Line 247: warning: exported method Generator.GenerateMock should have comment or be unexported (golint)
    • Line 282: warning: exported method Generator.Generate should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/model/model.go
    • Line 19: warning: exported type Generator should have comment or be unexported (golint)
    • Line 27: warning: exported function NewGenerator should have comment or be unexported (golint)
    • Line 306: warning: exported method Generator.Generate should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/types/repository.go
    • Line 9: warning: exported type RepositoryMethodHelper should have comment or be unexported (golint)
    • Line 16: warning: exported method RepositoryMethodHelper.Receiver should have comment or be unexported (golint)
    • Line 20: warning: exported method RepositoryMethodHelper.ReceiverClassName should have comment or be unexported (golint)
    • Line 24: warning: exported method RepositoryMethodHelper.CreateMethodDeclare should have comment or be unexported (golint)
    • Line 35: warning: exported method RepositoryMethodHelper.DAO should have comment or be unexported (golint)
    • Line 39: warning: exported method RepositoryMethodHelper.DAOName should have comment or be unexported (golint)
    • Line 43: warning: exported method RepositoryMethodHelper.Package should have comment or be unexported (golint)
    • Line 47: warning: exported method RepositoryMethodHelper.ContextType should have comment or be unexported (golint)
    • Line 56: warning: exported method RepositoryMethodHelper.EntityClassType should have comment or be unexported (golint)
    • Line 66: warning: exported method RepositoryMethodHelper.EntityCollectionClassType should have comment or be unexported (golint)
    • Line 75: warning: exported method RepositoryMethodHelper.ModelClassType should have comment or be unexported (golint)
    • Line 85: warning: exported method RepositoryMethodHelper.ModelCollectionClassType should have comment or be unexported (golint)
    • Line 95: warning: exported method RepositoryMethodHelper.FieldsToFind should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/dao/dao.go
    • Line 19: warning: should not use dot imports (golint)
    • Line 21: warning: should not use dot imports (golint)
    • Line 27: warning: exported type Declare should have comment or be unexported (golint)
    • Line 33: warning: exported type Generator should have comment or be unexported (golint)
    • Line 42: warning: exported type DataStore should have comment or be unexported (golint)
    • Line 134: warning: exported function NewPluginMap should have comment or be unexported (golint)
    • Line 185: warning: exported function NewGenerator should have comment or be unexported (golint)
    • Line 859: warning: exported type MethodGenerator should have comment or be unexported (golint)
    • Line 864: warning: exported method MethodGenerator.Generate should have comment or be unexported (golint)
    • Line 868: warning: exported type MethodGenerators should have comment or be unexported (golint)
    • Line 1559: warning: exported type Decl should have comment or be unexported (golint)
    • Line 1564: warning: exported type FuncDecl should have comment or be unexported (golint)
    • Line 1569: warning: exported method FuncDecl.IsGenerated should have comment or be unexported (golint)
    • Line 1573: warning: exported type FuncDecls should have comment or be unexported (golint)
    • Line 1575: warning: exported method FuncDecls.GeneratedFuncs should have comment or be unexported (golint)
    • Line 1586: warning: exported method FuncDecls.FuncNameMap should have comment or be unexported (golint)
    • Line 1594: warning: exported type PackageDecl should have comment or be unexported (golint)
    • Line 1601: warning: exported method PackageDecl.InterfaceMap should have comment or be unexported (golint)
    • Line 1787: warning: exported method Generator.PackageDeclare should have comment or be unexported (golint)
    • Line 1949: warning: exported method Generator.Generate should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/plural/plural.go
    • Line 9: warning: exported function Singular should have comment or be unexported (golint)
    • Line 17: warning: exported function Plural should have comment or be unexported (golint)
    • Line 24: warning: exported function Register should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/plugin/dao/db.go
    • Line 6: warning: should not use dot imports (golint)
    • Line 10: warning: exported type DBDataStore should have comment or be unexported (golint)
    • Line 17: warning: exported method DBDataStore.Imports should have comment or be unexported (golint)
    • Line 37: warning: exported method DBDataStore.StructFields should have comment or be unexported (golint)
    • Line 56: warning: exported method DBDataStore.ConstructorDeclare should have comment or be unexported (golint)
    • Line 70: warning: exported method DBDataStore.Constructor should have comment or be unexported (golint)
    • Line 78: warning: exported method DBDataStore.Create should have comment or be unexported (golint)
    • Line 114: warning: exported method DBDataStore.Update should have comment or be unexported (golint)
    • Line 146: warning: exported method DBDataStore.Delete should have comment or be unexported (golint)
    • Line 161: warning: exported method DBDataStore.FindAll should have comment or be unexported (golint)
    • Line 191: warning: exported method DBDataStore.Count should have comment or be unexported (golint)
    • Line 255: warning: exported method DBDataStore.FindWithQueryArgs should have comment or be unexported (golint)
    • Line 262: warning: exported method DBDataStore.FindBy should have comment or be unexported (golint)
    • Line 268: warning: exported method DBDataStore.FindByPlural should have comment or be unexported (golint)
    • Line 307: warning: exported method DBDataStore.UpdateWithAppendStmts should have comment or be unexported (golint)
    • Line 332: warning: exported method DBDataStore.UpdateBy should have comment or be unexported (golint)
    • Line 340: warning: exported method DBDataStore.UpdateByPlural should have comment or be unexported (golint)
    • Line 376: warning: exported method DBDataStore.DeleteWithArgs should have comment or be unexported (golint)
    • Line 389: warning: exported method DBDataStore.DeleteBy should have comment or be unexported (golint)
    • Line 395: warning: exported method DBDataStore.DeleteByPlural should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/eevee.go
    • Line 18: warning: a blank import should be only in a main or test package, or have a comment justifying it (golint)
    • Line 26: warning: exported function InstalledDir should have comment or be unexported (golint)
    • Line 31: warning: exported function ModulePath should have comment or be unexported (golint)
    • Line 42: warning: exported function GenerateByClass should have comment or be unexported (golint)
    • Line 49: warning: exported function GenerateByClasses should have comment or be unexported (golint)
    • Line 76: warning: exported function Generate should have comment or be unexported (golint)
    • Line 112: warning: exported const GoModPath should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/cmd/eevee/main.go
    • Line 20: warning: exported type Option should have comment or be unexported (golint)
    • Line 28: warning: exported type InitCommand should have comment or be unexported (golint)
    • Line 36: warning: exported type RunCommand should have comment or be unexported (golint)
    • Line 40: warning: exported type PluginCommand should have comment or be unexported (golint)
    • Line 51: warning: exported type PluginListCommand should have comment or be unexported (golint)
    • Line 54: warning: exported method PluginListCommand.Execute should have comment or be unexported (golint)
    • Line 77: warning: exported type PluginInstallCommand should have comment or be unexported (golint)
    • Line 80: warning: exported method PluginInstallCommand.Execute should have comment or be unexported (golint)
    • Line 84: warning: exported type PluginRemoveCommand should have comment or be unexported (golint)
    • Line 87: warning: exported method PluginRemoveCommand.Execute should have comment or be unexported (golint)
    • Line 91: warning: exported type PluginPathCommand should have comment or be unexported (golint)
    • Line 94: warning: exported method PluginPathCommand.Execute should have comment or be unexported (golint)
    • Line 99: warning: exported type WatchCommand should have comment or be unexported (golint)
    • Line 103: warning: exported type ServeCommand should have comment or be unexported (golint)
    • Line 108: warning: exported method InitCommand.Execute should have comment or be unexported (golint)
    • Line 129: warning: exported method RunCommand.Execute should have comment or be unexported (golint)
    • Line 146: warning: exported method WatchCommand.Execute should have comment or be unexported (golint)
    • Line 163: warning: exported method ServeCommand.Execute should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/types/entity.go
    • Line 4: warning: should not use dot imports (golint)
    • Line 7: warning: exported type EntityMethodHelper should have comment or be unexported (golint)
    • Line 13: warning: exported method EntityMethodHelper.CreateMethodDeclare should have comment or be unexported (golint)
    • Line 24: warning: exported method EntityMethodHelper.CreatePluralMethodDeclare should have comment or be unexported (golint)
    • Line 35: warning: exported method EntityMethodHelper.Field should have comment or be unexported (golint)
    • Line 39: warning: exported method EntityMethodHelper.Package should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/types/model.go
    • Line 10: warning: exported type ModelMethodHelper should have comment or be unexported (golint)
    • Line 16: warning: exported method ModelMethodHelper.Receiver should have comment or be unexported (golint)
    • Line 20: warning: exported method ModelMethodHelper.Field should have comment or be unexported (golint)
    • Line 24: warning: exported method ModelMethodHelper.MethodCall should have comment or be unexported (golint)
    • Line 28: warning: exported method ModelMethodHelper.ModelName should have comment or be unexported (golint)
    • Line 32: warning: exported method ModelMethodHelper.ModelCollectionName should have comment or be unexported (golint)
    • Line 36: warning: exported method ModelMethodHelper.GetImportList should have comment or be unexported (golint)
    • Line 40: warning: exported method ModelMethodHelper.ModelType should have comment or be unexported (golint)
    • Line 49: warning: exported method ModelMethodHelper.GetClass should have comment or be unexported (golint)
    • Line 53: warning: exported method ModelMethodHelper.ModelCollectionType should have comment or be unexported (golint)
    • Line 62: warning: exported method ModelMethodHelper.CreateMethodDeclare should have comment or be unexported (golint)
    • Line 73: warning: exported method ModelMethodHelper.CreateCollectionMethodDeclare should have comment or be unexported (golint)
    • Line 84: warning: exported method ModelMethodHelper.CreateMultipleCollectionMethodDeclare should have comment or be unexported (golint)
    • Line 95: warning: exported method ModelMethodHelper.CollectionProperties should have comment or be unexported (golint)
    • Line 139: warning: exported method ModelMethodHelper.IsModelPackage should have comment or be unexported (golint)
    • Line 143: warning: exported method ModelMethodHelper.DAO should have comment or be unexported (golint)
    • Line 147: warning: exported method ModelMethodHelper.DAOName should have comment or be unexported (golint)
    • Line 151: warning: exported method ModelMethodHelper.Package should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/types/name.go
    • Line 11: warning: exported type Name should have comment or be unexported (golint)
    • Line 75: warning: exported method Name.CamelName should have comment or be unexported (golint)
    • Line 83: warning: exported method Name.PluralCamelName should have comment or be unexported (golint)
    • Line 92: warning: exported method Name.CamelLowerName should have comment or be unexported (golint)
    • Line 96: warning: exported method Name.PluralCamelLowerName should have comment or be unexported (golint)
    • Line 100: warning: exported method Name.SnakeName should have comment or be unexported (golint)
    • Line 104: warning: exported method Name.PluralSnakeName should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/types/type.go
    • Line 17: warning: exported type INDEX should have comment or be unexported (golint)
    • Line 23: warning: exported type UniqueKey should have comment or be unexported (golint)
    • Line 27: warning: exported method UniqueKey.MarshalYAML should have comment or be unexported (golint)
    • Line 31: warning: exported method UniqueKey.UnmarshalYAML should have comment or be unexported (golint)
    • Line 38: warning: exported type Key should have comment or be unexported (golint)
    • Line 42: warning: exported method Key.MarshalYAML should have comment or be unexported (golint)
    • Line 46: warning: exported method Key.UnmarshalYAML should have comment or be unexported (golint)
    • Line 53: warning: exported type Class should have comment or be unexported (golint)
    • Line 62: warning: exported type Member should have comment or be unexported (golint)
    • Line 74: warning: exported type Relation should have comment or be unexported (golint)
    • Line 82: warning: exported type Render should have comment or be unexported (golint)
    • Line 125: warning: exported method Render.UnmarshalYAML should have comment or be unexported (golint)
    • Line 150: warning: exported type Type should have comment or be unexported (golint)
    • Line 159: warning: exported method Type.IsInt should have comment or be unexported (golint)
    • Line 168: warning: exported method Type.IsUint should have comment or be unexported (golint)
    • Line 177: warning: exported method Type.IsFloat should have comment or be unexported (golint)
    • Line 185: warning: exported method Type.IsBool should have comment or be unexported (golint)
    • Line 193: warning: exported method Type.IsByte should have comment or be unexported (golint)
    • Line 201: warning: exported method Type.IsString should have comment or be unexported (golint)
    • Line 209: warning: exported method Type.IsComplex should have comment or be unexported (golint)
    • Line 217: warning: exported method Type.IsRune should have comment or be unexported (golint)
    • Line 225: warning: exported method Type.IsTime should have comment or be unexported (golint)
    • Line 235: warning: exported type TypeDeclare should have comment or be unexported (golint)
    • Line 243: warning: exported method TypeDeclare.IsCustomPrimitiveType should have comment or be unexported (golint)
    • Line 247: warning: exported method TypeDeclare.Name should have comment or be unexported (golint)
    • Line 251: warning: exported method TypeDeclare.DefaultValue should have comment or be unexported (golint)
    • Line 258: warning: exported method TypeDeclare.Class should have comment or be unexported (golint)
    • Line 272: warning: exported method TypeDeclare.IsSchemaClass should have comment or be unexported (golint)
    • Line 280: warning: exported method TypeDeclare.FormatName should have comment or be unexported (golint)
    • Line 287: warning: exported method TypeDeclare.CollectionName should have comment or be unexported (golint)
    • Line 294: warning: exported method TypeDeclare.CodePackage should have comment or be unexported (golint)
    • Line 301: warning: exported method TypeDeclare.CodeWithoutPackage should have comment or be unexported (golint)
    • Line 312: warning: exported method TypeDeclare.Code should have comment or be unexported (golint)
    • Line 328: warning: exported function TypeDeclareWithName should have comment or be unexported (golint)
    • Line 336: warning: exported function TypeDeclareWithType should have comment or be unexported (golint)
    • Line 342: warning: exported method TypeDeclare.MarshalYAML should have comment or be unexported (golint)
    • Line 359: warning: exported method TypeDeclare.ValueToCode should have comment or be unexported (golint)
    • Line 394: warning: exported method TypeDeclare.UnmarshalYAML should have comment or be unexported (golint)
    • Line 432: warning: exported var IntType should have comment or be unexported (golint)
    • Line 473: warning: exported type Members should have comment or be unexported (golint)
    • Line 475: warning: exported method Members.JoinedName should have comment or be unexported (golint)
    • Line 483: warning: exported method Members.Names should have comment or be unexported (golint)
    • Line 491: warning: exported method Class.FileName should have comment or be unexported (golint)
    • Line 495: warning: exported method Class.ExtendMembers should have comment or be unexported (golint)
    • Line 508: warning: exported method Class.RelationMembers should have comment or be unexported (golint)
    • Line 518: warning: exported method Class.DependencyMembers should have comment or be unexported (golint)
    • Line 534: warning: exported method Class.DependencyClasses should have comment or be unexported (golint)
    • Line 551: warning: exported method Class.AllDependencyClasses should have comment or be unexported (golint)
    • Line 555: warning: exported method Class.MarshalRelation should have comment or be unexported (golint)
    • Line 563: warning: exported method Class.PrimaryKey should have comment or be unexported (golint)
    • Line 567: warning: exported method Class.UniqueKeys should have comment or be unexported (golint)
    • Line 579: warning: exported method Class.Keys should have comment or be unexported (golint)
    • Line 591: warning: exported method Class.MemberByName should have comment or be unexported (golint)
    • Line 600: warning: exported method Class.SetClassMap should have comment or be unexported (golint)
    • Line 610: warning: exported method Class.SetSubClassMap should have comment or be unexported (golint)
    • Line 619: warning: exported method Class.ResolveTypeReference should have comment or be unexported (golint)
    • Line 636: warning: exported method Class.Merge should have comment or be unexported (golint)
    • Line 669: warning: exported method Class.TestData should have comment or be unexported (golint)
    • Line 681: warning: exported method Class.DefaultTestObject should have comment or be unexported (golint)
    • Line 697: warning: exported method Member.RenderProtocols should have comment or be unexported (golint)
    • Line 711: warning: exported method Member.RenderNameByProtocol should have comment or be unexported (golint)
    • Line 728: warning: exported method Member.CamelType should have comment or be unexported (golint)
    • Line 732: warning: exported method Member.IsCollectionType should have comment or be unexported (golint)
    • Line 744: warning: exported method Member.CollectionName should have comment or be unexported (golint)
    • Line 751: warning: exported method Member.ModelCollectionTypeName should have comment or be unexported (golint)
    • Line 764: warning: exported method Class.Validate should have comment or be unexported (golint)
    • Line 776: warning: exported method Member.Validate should have comment or be unexported (golint)
    • Line 791: warning: exported method Relation.Validate should have comment or be unexported (golint)
    • Line 813: warning: exported type API should have comment or be unexported (golint)
    • Line 822: warning: exported type Request should have comment or be unexported (golint)
    • Line 826: warning: exported type RequestParams should have comment or be unexported (golint)
    • Line 828: warning: exported method RequestParams.HasInBodyParam should have comment or be unexported (golint)
    • Line 837: warning: exported method RequestParams.HasInQueryParam should have comment or be unexported (golint)
    • Line 846: warning: exported type InType should have comment or be unexported (golint)
    • Line 849: warning: exported const InHeader should have comment (or a comment on this block) or be unexported (golint)
    • Line 855: warning: exported type RequestParam should have comment or be unexported (golint)
    • Line 865: warning: exported method RequestParam.RenderName should have comment or be unexported (golint)
    • Line 872: warning: exported type APIClass should have comment or be unexported (golint)
    • Line 878: warning: exported type Include should have comment or be unexported (golint)
    • Line 885: warning: exported method Include.BuilderCode should have comment or be unexported (golint)
    • Line 912: warning: exported type Response should have comment or be unexported (golint)
    • Line 917: warning: exported method Response.BuilderCode should have comment or be unexported (golint)
    • Line 1064: warning: exported method Response.Render should have comment or be unexported (golint)
    • Line 1072: warning: exported type Attribute should have comment or be unexported (golint)
    • Line 1115: warning: exported method Response.Attributes should have comment or be unexported (golint)
    • Line 1119: warning: exported method Response.RenderJSON should have comment or be unexported (golint)
    • Line 1128: warning: exported method Response.ResolveClassReference should have comment or be unexported (golint)
    • Line 1139: warning: exported method Response.UnmarshalYAML should have comment or be unexported (golint)
    • Line 1162: warning: exported type TestObjectMap should have comment or be unexported (golint)
    • Line 1163: warning: exported type TestObjectDecl should have comment or be unexported (golint)
    • Line 1168: warning: exported method TestObjectMap.MarshalYAML should have comment or be unexported (golint)
    • Line 1176: warning: exported type TestData should have comment or be unexported (golint)
    • Line 1181: warning: exported type TestObject should have comment or be unexported (golint)
    • Line 1186: warning: exported method TestObject.MergedMapValue should have comment or be unexported (golint)
    • Line 1199: warning: exported method TestData.MergeDefault should have comment or be unexported (golint)
    • Line 1220: warning: exported type StructFieldList should have comment or be unexported (golint)
    • Line 1222: warning: exported type ImportDeclare should have comment or be unexported (golint)
    • Line 1227: warning: exported method ImportDeclare.GetName should have comment or be unexported (golint)
    • Line 1231: warning: exported method ImportDeclare.GetPath should have comment or be unexported (golint)
    • Line 1235: warning: exported type ImportList should have comment or be unexported (golint)
    • Line 1237: warning: exported method ImportList.Each should have comment or be unexported (golint)
    • Line 1243: warning: exported method ImportList.Package should have comment or be unexported (golint)
    • Line 1250: warning: exported function DefaultImportList should have comment or be unexported (golint)
    • Line 1293: warning: exported type ValueDeclare should have comment or be unexported (golint)
    • Line 1298: warning: exported method ValueDeclare.Code should have comment or be unexported (golint)
    • Line 1304: warning: exported method ValueDeclare.Interface should have comment or be unexported (golint)
    • Line 1308: warning: exported type ValueDeclares should have comment or be unexported (golint)
    • Line 1310: warning: exported method ValueDeclares.Code should have comment or be unexported (golint)
    • Line 1318: warning: exported method ValueDeclares.Interface should have comment or be unexported (golint)
    • Line 1326: warning: exported type ConstructorDeclare should have comment or be unexported (golint)
    • Line 1334: warning: exported method ConstructorDeclare.MethodInterface should have comment or be unexported (golint)
    • Line 1339: warning: exported method ConstructorDeclare.Package should have comment or be unexported (golint)
    • Line 1343: warning: exported type MethodDeclare should have comment or be unexported (golint)
    • Line 1355: warning: exported method MethodDeclare.Interface should have comment or be unexported (golint)
    • Line 1367: warning: exported method MethodDeclare.MethodInterface should have comment or be unexported (golint)
    • Line 1378: warning: exported type Method should have comment or be unexported (golint)
    • Line 1383: warning: exported method Method.Generate should have comment or be unexported (golint)
    • Line 1387: warning: exported type Methods should have comment or be unexported (golint)
    • Line 1389: warning: exported method Methods.Generate should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/class/class.go
    • Line 16: warning: exported type Reader should have comment or be unexported (golint)
    • Line 19: warning: exported function NewReader should have comment or be unexported (golint)
    • Line 28: warning: exported method Reader.ReadClass should have comment or be unexported (golint)
    • Line 72: warning: exported method Reader.ClassByConfig should have comment or be unexported (golint)
    • Line 110: warning: exported type ClassMarshaler should have comment or be unexported (golint)
    • Line 115: warning: exported type Writer should have comment or be unexported (golint)
    • Line 120: warning: exported function NewWriter should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/types/api.go
    • Line 7: warning: exported type APIResponseHelper should have comment or be unexported (golint)
    • Line 13: warning: exported method APIResponseHelper.Receiver should have comment or be unexported (golint)
    • Line 17: warning: exported method APIResponseHelper.Field should have comment or be unexported (golint)
    • Line 21: warning: exported method APIResponseHelper.MethodCall should have comment or be unexported (golint)
    • Line 25: warning: exported method APIResponseHelper.GetClass should have comment or be unexported (golint)
    • Line 29: warning: exported method APIResponseHelper.GetImportList should have comment or be unexported (golint)
    • Line 33: warning: exported method APIResponseHelper.CreateMethodDeclare should have comment or be unexported (golint)
    • Line 44: warning: exported method APIResponseHelper.CreateCollectionMethodDeclare should have comment or be unexported (golint)
    • Line 55: warning: exported method APIResponseHelper.Package should have comment or be unexported (golint)
    • Line 59: warning: exported method APIResponseHelper.IsModelPackage should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/plugin/eevee-rapidash-plugin/dao.go
    • Line 6: warning: should not use dot imports (golint)
    • Line 11: warning: exported type RapidashDataStore should have comment or be unexported (golint)
    • Line 17: warning: exported method RapidashDataStore.Imports should have comment or be unexported (golint)
    • Line 37: warning: exported method RapidashDataStore.StructFields should have comment or be unexported (golint)
    • Line 56: warning: exported method RapidashDataStore.ConstructorDeclare should have comment or be unexported (golint)
    • Line 70: warning: exported method RapidashDataStore.Constructor should have comment or be unexported (golint)
    • Line 78: warning: exported method RapidashDataStore.Create should have comment or be unexported (golint)
    • Line 105: warning: exported method RapidashDataStore.Update should have comment or be unexported (golint)
    • Line 135: warning: exported method RapidashDataStore.Delete should have comment or be unexported (golint)
    • Line 150: warning: exported method RapidashDataStore.FindAll should have comment or be unexported (golint)
    • Line 163: warning: exported method RapidashDataStore.Count should have comment or be unexported (golint)
    • Line 176: warning: exported method RapidashDataStore.FindBy should have comment or be unexported (golint)
    • Line 213: warning: exported method RapidashDataStore.FindByPlural should have comment or be unexported (golint)
    • Line 235: warning: exported method RapidashDataStore.UpdateBy should have comment or be unexported (golint)
    • Line 256: warning: exported method RapidashDataStore.UpdateByPlural should have comment or be unexported (golint)
    • Line 277: warning: exported method RapidashDataStore.DeleteBy should have comment or be unexported (golint)
    • Line 298: warning: exported method RapidashDataStore.DeleteByPlural should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/plugin/eevee-rapidash-plugin/entity.go
    • Line 6: warning: should not use dot imports (golint)
    • Line 11: warning: exported type RapidashEntityHandler should have comment or be unexported (golint)
    • Line 18: warning: exported method RapidashEntityHandler.Imports should have comment or be unexported (golint)
    • Line 34: warning: exported method RapidashEntityHandler.Struct should have comment or be unexported (golint)
    • Line 63: warning: exported method RapidashEntityHandler.EncodeRapidash should have comment or be unexported (golint)
    • Line 115: warning: exported method RapidashEntityHandler.EncodeRapidashPlural should have comment or be unexported (golint)
    • Line 146: warning: exported method RapidashEntityHandler.DecodeRapidash should have comment or be unexported (golint)
    • Line 189: warning: exported method RapidashEntityHandler.DecodeRapidashPlural should have comment or be unexported (golint)
    • Line 229: warning: exported method RapidashEntityHandler.AddMethods should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/api/api.go
    • Line 17: warning: a blank import should be only in a main or test package, or have a comment justifying it (golint)
    • Line 22: warning: exported type Generator should have comment or be unexported (golint)
    • Line 29: warning: exported function NewGenerator should have comment or be unexported (golint)
    • Line 501: warning: exported method Generator.Generate should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/code/extention.go
    • Line 3: warning: exported type CodeHelper should have comment or be unexported (golint)
    • Line 7: warning: exported const GeneratedMarker should have comment or be unexported (golint)
    • Line 8: warning: exported const FuncGeneratedMarker should have comment or be unexported (golint)
    • Line 10: warning: exported function WrapError should have comment or be unexported (golint)
    • Line 14: warning: exported function AddStruct should have comment or be unexported (golint)
    • Line 19: warning: exported function TypeDef should have comment or be unexported (golint)
    • Line 24: warning: exported type Import should have comment or be unexported (golint)
    • Line 29: warning: exported type Imports should have comment or be unexported (golint)
    • Line 33: warning: exported function NewGeneratedFile should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/renderer/json.go
    • Line 6: warning: should not use dot imports (golint)
    • Line 10: warning: exported type JSONRenderer should have comment or be unexported (golint)
    • Line 265: warning: exported method JSONRenderer.Render should have comment or be unexported (golint)
    • Line 337: warning: exported method JSONRenderer.RenderWithOption should have comment or be unexported (golint)
    • Line 446: warning: exported method JSONRenderer.RenderCollection should have comment or be unexported (golint)
    • Line 489: warning: exported method JSONRenderer.RenderCollectionWithOption should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/schema/schema.go
    • Line 16: warning: exported type Schema should have comment or be unexported (golint)
    • Line 22: warning: exported type Column should have comment or be unexported (golint)
    • Line 28: warning: exported method Column.ToMember should have comment or be unexported (golint)
    • Line 47: warning: exported method Schema.FileName should have comment or be unexported (golint)
    • Line 51: warning: exported method Schema.ToClass should have comment or be unexported (golint)
    • Line 63: warning: exported type Reader should have comment or be unexported (golint)
    • Line 74: warning: exported function NewReader should have comment or be unexported (golint)
    • Line 223: warning: exported method Reader.SchemaFromPath should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/model/template.go
    • Line 7: warning: should not use dot imports (golint)
    • Line 11: warning: exported method Generator.Constructor should have comment or be unexported (golint)
    • Line 51: warning: exported method Generator.CollectionConstructor should have comment or be unexported (golint)
    • Line 97: warning: exported method Generator.Create should have comment or be unexported (golint)
    • Line 135: warning: exported method Generator.Update should have comment or be unexported (golint)
    • Line 184: warning: exported method Generator.Delete should have comment or be unexported (golint)
    • Line 214: warning: exported method Generator.SetAlreadyCreated should have comment or be unexported (golint)
    • Line 229: warning: exported method Generator.SetSavedValue should have comment or be unexported (golint)
    • Line 250: warning: exported method Generator.SetConverter should have comment or be unexported (golint)
    • Line 265: warning: exported method Generator.Save should have comment or be unexported (golint)
    • Line 297: warning: exported method Generator.CreateForCollection should have comment or be unexported (golint)
    • Line 336: warning: exported method Generator.UpdateForCollection should have comment or be unexported (golint)
    • Line 375: warning: exported method Generator.SaveForCollection should have comment or be unexported (golint)
    • Line 414: warning: exported method Generator.NewCollection should have comment or be unexported (golint)
    • Line 438: warning: exported method Generator.Each should have comment or be unexported (golint)
    • Line 456: warning: exported method Generator.EachIndex should have comment or be unexported (golint)
    • Line 474: warning: exported method Generator.EachWithError should have comment or be unexported (golint)
    • Line 498: warning: exported method Generator.EachIndexWithError should have comment or be unexported (golint)
    • Line 522: warning: exported method Generator.Map should have comment or be unexported (golint)
    • Line 548: warning: exported method Generator.Any should have comment or be unexported (golint)
    • Line 572: warning: exported method Generator.Some should have comment or be unexported (golint)
    • Line 590: warning: exported method Generator.IsIncluded should have comment or be unexported (golint)
    • Line 608: warning: exported method Generator.All should have comment or be unexported (golint)
    • Line 632: warning: exported method Generator.Sort should have comment or be unexported (golint)
    • Line 654: warning: exported method Generator.SortStable should have comment or be unexported (golint)
    • Line 676: warning: exported method Generator.Find should have comment or be unexported (golint)
    • Line 700: warning: exported method Generator.Filter should have comment or be unexported (golint)
    • Line 725: warning: exported method Generator.IsEmpty should have comment or be unexported (golint)
    • Line 741: warning: exported method Generator.At should have comment or be unexported (golint)
    • Line 764: warning: exported method Generator.First should have comment or be unexported (golint)
    • Line 782: warning: exported method Generator.Last should have comment or be unexported (golint)
    • Line 800: warning: exported method Generator.Compact should have comment or be unexported (golint)
    • Line 820: warning: exported method Generator.Add should have comment or be unexported (golint)
    • Line 842: warning: exported method Generator.Merge should have comment or be unexported (golint)
    • Line 866: warning: exported method Generator.Len should have comment or be unexported (golint)
    • Line 881: warning: exported method Generator.MergeCollection should have comment or be unexported (golint)
    • Line 904: warning: exported method Generator.Unique should have comment or be unexported (golint)
    • Line 931: warning: exported method Generator.GroupBy should have comment or be unexported (golint)
    • Line 956: warning: exported method Generator.FirstBy should have comment or be unexported (golint)
    • Line 985: warning: exported method Generator.FilterBy should have comment or be unexported (golint)
    • Line 1111: warning: exported method Generator.Collection should have comment or be unexported (golint)
    • Line 1243: warning: exported method Generator.Methods should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/entity/entity.go
    • Line 9: warning: should not use dot imports (golint)
    • Line 11: warning: should not use dot imports (golint)
    • Line 16: warning: exported type Generator should have comment or be unexported (golint)
    • Line 24: warning: exported function NewGenerator should have comment or be unexported (golint)
    • Line 136: warning: exported method Generator.Generate should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/plugin/entity/interface.go
    • Line 10: warning: exported type EntityPlugin should have comment or be unexported (golint)
    • Line 19: warning: exported function Register should have comment or be unexported (golint)
    • Line 23: warning: exported function Plugin should have comment or be unexported (golint)
    • Line 28: warning: exported function Plugins should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/renderer/map.go
    • Line 6: warning: should not use dot imports (golint)
    • Line 10: warning: exported type MapRenderer should have comment or be unexported (golint)
    • Line 82: warning: exported method MapRenderer.Render should have comment or be unexported (golint)
    • Line 126: warning: exported method MapRenderer.RenderWithOption should have comment or be unexported (golint)
    • Line 194: warning: exported method MapRenderer.RenderCollection should have comment or be unexported (golint)
    • Line 232: warning: exported method MapRenderer.RenderCollectionWithOption should have comment or be unexported (golint)
    • Line 278: warning: exported method MapRenderer.Marshaler should have comment or be unexported (golint)
    • Line 279: warning: exported method MapRenderer.MarshalerContext should have comment or be unexported (golint)
    • Line 280: warning: exported method MapRenderer.MarshalerCollection should have comment or be unexported (golint)
    • Line 281: warning: exported method MapRenderer.MarshalerCollectionContext should have comment or be unexported (golint)
    • Line 282: warning: exported method MapRenderer.Unmarshaler should have comment or be unexported (golint)
    • Line 283: warning: exported method MapRenderer.UnmarshalerCollection should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/plugin/dao/interface.go
    • Line 6: warning: should not use dot imports (golint)
    • Line 11: warning: comment on exported const ImportsPlugin should be of the form "ImportsPlugin ..." (golint)
    • Line 109: warning: exported type DataStorePlugin should have comment or be unexported (golint)
    • Line 142: warning: exported type DAOPlugin should have comment or be unexported (golint)
    • Line 219: warning: exported function RegisterDataStore should have comment or be unexported (golint)
    • Line 225: warning: exported function Register should have comment or be unexported (golint)
    • Line 231: warning: exported type DAOPluginMap should have comment or be unexported (golint)
    • Line 233: warning: exported function DataStoreMap should have comment or be unexported (golint)
    • Line 281: warning: exported function PluginMap should have comment or be unexported (golint)
    • Line 428: warning: exported function DataStoreByName should have comment or be unexported (golint)
    • Line 432: warning: exported function DataStoreNames should have comment or be unexported (golint)
    • Line 440: warning: exported function Plugin should have comment or be unexported (golint)
    • Line 445: warning: exported function Plugins should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/config/config.go
    • Line 16: warning: exported const ConfigFilePath should have comment (or a comment on this block) or be unexported (golint)
    • Line 20: warning: exported type Plugin should have comment or be unexported (golint)
    • Line 26: warning: exported type PrimitiveType should have comment or be unexported (golint)
    • Line 34: warning: exported type Config should have comment or be unexported (golint)
    • Line 53: warning: exported method Config.OutputPathWithPackage should have comment or be unexported (golint)
    • Line 57: warning: exported method Config.TestDataPath should have comment or be unexported (golint)
    • Line 61: warning: exported method Config.ContextImportPath should have comment or be unexported (golint)
    • Line 68: warning: exported method Config.DAOPackageName should have comment or be unexported (golint)
    • Line 79: warning: exported method Config.EntityPackageName should have comment or be unexported (golint)
    • Line 90: warning: exported method Config.ModelPackageName should have comment or be unexported (golint)
    • Line 101: warning: exported method Config.RepositoryPackageName should have comment or be unexported (golint)
    • Line 112: warning: exported method Config.RequestPackageName should have comment or be unexported (golint)
    • Line 117: warning: exported method Config.ResponsePackageName should have comment or be unexported (golint)
    • Line 122: warning: exported method Config.DataStore should have comment or be unexported (golint)
    • Line 129: warning: exported method Config.EntityPlugins should have comment or be unexported (golint)
    • Line 136: warning: exported type DataStore should have comment or be unexported (golint)
    • Line 140: warning: exported method DataStore.UnmarshalYAML should have comment or be unexported (golint)
    • Line 149: warning: exported type DAO should have comment or be unexported (golint)
    • Line 155: warning: exported type Entity should have comment or be unexported (golint)
    • Line 160: warning: exported type Model should have comment or be unexported (golint)
    • Line 164: warning: exported type Repository should have comment or be unexported (golint)
    • Line 168: warning: exported type RenderStyle should have comment or be unexported (golint)
    • Line 171: warning: exported const RenderStyleLowerCamel should have comment (or a comment on this block) or be unexported (golint)
    • Line 176: warning: exported type Renderer should have comment or be unexported (golint)
    • Line 180: warning: exported type Plural should have comment or be unexported (golint)
    • Line 185: warning: exported type Context should have comment or be unexported (golint)
    • Line 189: warning: exported function ExistsConfig should have comment or be unexported (golint)
    • Line 194: warning: exported function WriteConfig should have comment or be unexported (golint)
    • Line 205: warning: exported function ConfigFromBytes should have comment or be unexported (golint)
    • Line 229: warning: exported function ConfigFromReader should have comment or be unexported (golint)
    • Line 241: warning: exported function ConfigFromPath should have comment or be unexported (golint)
    • Line 253: warning: exported function ReadConfig should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/watcher/watcher.go
    • Line 17: warning: exported type Watcher should have comment or be unexported (golint)
    • Line 282: warning: exported method Watcher.Run should have comment or be unexported (golint)
    • Line 297: warning: exported method Watcher.Stop should have comment or be unexported (golint)
    • Line 301: warning: exported method Watcher.Close should have comment or be unexported (golint)
    • Line 313: warning: exported function New should have comment or be unexported (golint)
    • /go.knocknote.io/eevee/repository/template.go
    • Line 7: warning: should not use dot imports (golint)
    • Line 11: warning: exported method Generator.Constructor should have comment or be unexported (golint)
    • Line 51: warning: exported method Generator.ConstructorMock should have comment or be unexported (golint)
    • Line 67: warning: exported method Generator.EXPECT should have comment or be unexported (golint)
    • Line 229: warning: exported method Generator.Create should have comment or be unexported (golint)
    • Line 442: warning: exported method Generator.CreateMock should have comment or be unexported (golint)
    • Line 472: warning: exported method Generator.Creates should have comment or be unexported (golint)
    • Line 514: warning: exported method Generator.CreatesMock should have comment or be unexported (golint)
    • Line 544: warning: exported method Generator.ToModel should have comment or be unexported (golint)
    • Line 570: warning: exported method Generator.ToModelMock should have comment or be unexported (golint)
    • Line 592: warning: exported method Generator.ToModels should have comment or be unexported (golint)
    • Line 614: warning: exported method Generator.ToModelsMock should have comment or be unexported (golint)
    • Line 636: warning: exported method Generator.FindBy should have comment or be unexported (golint)
    • Line 712: warning: exported method Generator.FindByMock should have comment or be unexported (golint)
    • Line 747: warning: exported method Generator.UpdateBy should have comment or be unexported (golint)
    • Line 770: warning: exported method Generator.UpdateByMock should have comment or be unexported (golint)
    • Line 786: warning: exported method Generator.DeleteBy should have comment or be unexported (golint)
    • Line 809: warning: exported method Generator.DeleteByMock should have comment or be unexported (golint)
    • Line 825: warning: exported method Generator.Other should have comment or be unexported (golint)
    • Line 856: warning: exported method Generator.OtherMock should have comment or be unexported (golint)
    • Line 872: warning: receiver name g should be consistent with previous receiver name r for Generator (golint)
    • Line 897: warning: receiver name g should be consistent with previous receiver name r for Generator (golint)
    • /go.knocknote.io/eevee/plugin/eevee-user-id-plugin/dao.go
    • Line 7: warning: should not use dot imports (golint)
    • Line 12: warning: exported type DAOUserIDPlugin should have comment or be unexported (golint)
    • Line 61: warning: exported method DAOUserIDPlugin.StructFields should have comment or be unexported (golint)
    • Line 90: warning: exported method DAOUserIDPlugin.ConstructorDeclare should have comment or be unexported (golint)
    • Line 115: warning: exported method DAOUserIDPlugin.Constructor should have comment or be unexported (golint)
    • Line 127: warning: exported method DAOUserIDPlugin.FindByDeclare should have comment or be unexported (golint)
    • Line 141: warning: exported method DAOUserIDPlugin.FindBy should have comment or be unexported (golint)
    • Line 154: warning: exported method DAOUserIDPlugin.UpdateByDeclare should have comment or be unexported (golint)
    • Line 172: warning: exported method DAOUserIDPlugin.UpdateBy should have comment or be unexported (golint)
    • Line 184: warning: exported method DAOUserIDPlugin.DeleteByDeclare should have comment or be unexported (golint)
    • Line 194: warning: exported method DAOUserIDPlugin.DeleteBy should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!