Preparing report...

Report for github.com/mindstand/go-bolt

A+    Excellent!    Found 55 issues across 79 files

Tweet

gofmt98%

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!


gocyclo88%

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-bolt/time_test.go
    • Line 12: warning: cyclomatic complexity 23 of function TestDecoderTimeIntegration() is high (> 15) (gocyclo)
    • Line 194: warning: cyclomatic complexity 16 of function TestEncoderTimeIntegration() is high (> 15) (gocyclo)
    • go-bolt/encoding/encoding_v2/encoderV2.go
    • Line 115: warning: cyclomatic complexity 29 of function (EncoderV2).encode() is high (> 15) (gocyclo)
    • Line 354: warning: cyclomatic complexity 26 of function (EncoderV2).encodeInt() is high (> 15) (gocyclo)
    • Line 507: warning: cyclomatic complexity 19 of function (EncoderV2).encodeMap() is high (> 15) (gocyclo)
    • Line 465: warning: cyclomatic complexity 18 of function (EncoderV2).encodeSlice() is high (> 15) (gocyclo)
    • Line 424: warning: cyclomatic complexity 16 of function (EncoderV2).encodeString() is high (> 15) (gocyclo)
    • go-bolt/routing/pool.go
    • Line 192: warning: cyclomatic complexity 17 of function (*routingPool).refreshConnections() is high (> 15) (gocyclo)
    • Line 295: warning: cyclomatic complexity 16 of function (*routingPool).balance() is high (> 15) (gocyclo)
    • go-bolt/encoding/encoding_v1/encoderV1.go
    • Line 185: warning: cyclomatic complexity 26 of function (EncoderV1).encodeInt() is high (> 15) (gocyclo)
    • Line 110: warning: cyclomatic complexity 23 of function (EncoderV1).encode() is high (> 15) (gocyclo)
    • Line 338: warning: cyclomatic complexity 19 of function (EncoderV1).encodeMap() is high (> 15) (gocyclo)
    • Line 296: warning: cyclomatic complexity 18 of function (EncoderV1).encodeSlice() is high (> 15) (gocyclo)
    • Line 255: warning: cyclomatic complexity 16 of function (EncoderV1).encodeString() is high (> 15) (gocyclo)

golint31%

Golint is a linter for Go source code.

    • go-bolt/protocol/protocol_v3/const.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 4: warning: exported const ProtocolVersion should have comment (or a comment on this block) or be unexported (golint)
    • Line 8: warning: exported var ProtocolVersionBytes should have comment or be unexported (golint)
    • go-bolt/protocol/protocol_v4/bolt.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 12: warning: exported type BoltProtocolV4 should have comment or be unexported (golint)
    • Line 14: warning: exported method BoltProtocolV4.GetResultAvailableAfterKey should have comment or be unexported (golint)
    • Line 18: warning: exported method BoltProtocolV4.GetResultConsumedAfterKey should have comment or be unexported (golint)
    • Line 22: warning: exported method BoltProtocolV4.GetDiscardMessage should have comment or be unexported (golint)
    • Line 26: warning: exported method BoltProtocolV4.GetDiscardAllMessage should have comment or be unexported (golint)
    • Line 30: warning: exported method BoltProtocolV4.SupportsMultiDatabase should have comment or be unexported (golint)
    • Line 34: warning: exported method BoltProtocolV4.GetInitMessage should have comment or be unexported (golint)
    • Line 44: warning: exported method BoltProtocolV4.GetCloseMessage should have comment or be unexported (golint)
    • Line 48: warning: exported method BoltProtocolV4.GetTxBeginMessage should have comment or be unexported (golint)
    • Line 52: warning: exported method BoltProtocolV4.GetTxCommitMessage should have comment or be unexported (golint)
    • Line 56: warning: exported method BoltProtocolV4.GetTxRollbackMessage should have comment or be unexported (golint)
    • Line 60: warning: exported method BoltProtocolV4.GetRunMessage should have comment or be unexported (golint)
    • Line 63: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 68: warning: exported method BoltProtocolV4.GetPullAllMessage should have comment or be unexported (golint)
    • Line 72: warning: exported method BoltProtocolV4.Marshal should have comment or be unexported (golint)
    • Line 76: warning: exported method BoltProtocolV4.Unmarshal should have comment or be unexported (golint)
    • Line 80: warning: exported method BoltProtocolV4.NewEncoder should have comment or be unexported (golint)
    • Line 84: warning: exported method BoltProtocolV4.NewDecoder should have comment or be unexported (golint)
    • go-bolt/routing/queue.go
    • Line 5: warning: exported type Queue should have comment or be unexported (golint)
    • Line 10: warning: comment on exported function NewQueue should be of the form "NewQueue ..." (golint)
    • Line 18: warning: exported function NewQueueFromSlice should have comment or be unexported (golint)
    • go-bolt/driver_pool.go
    • Line 1: warning: don't use MixedCaps in package name; goBolt should be gobolt (golint)
    • Line 96: warning: exported type DriverPool should have comment or be unexported (golint)
    • Line 100: warning: exported method DriverPool.Open should have comment or be unexported (golint)
    • Line 104: warning: exported method DriverPool.Reclaim should have comment or be unexported (golint)
    • Line 108: warning: exported method DriverPool.Close should have comment or be unexported (golint)
    • go-bolt/protocol/protocol_v2/const.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 4: warning: exported const ProtocolVersion should have comment (or a comment on this block) or be unexported (golint)
    • Line 8: warning: exported var ProtocolVersionBytes should have comment or be unexported (golint)
    • go-bolt/structures/messages/run_with_metadata.go
    • Line 15: warning: exported type RunWithMetadataMessage should have comment or be unexported (golint)
    • Line 21: warning: comment on exported function NewAutoCommitTxRunMessage should be of the form "NewAutoCommitTxRunMessage ..." (golint)
    • Line 27: warning: comment on exported function NewUnmanagedTxRunMessage should be of the form "NewUnmanagedTxRunMessage ..." (golint)
    • Line 40: warning: exported method RunWithMetadataMessage.Signature should have comment or be unexported (golint)
    • Line 44: warning: exported method RunWithMetadataMessage.AllFields should have comment or be unexported (golint)
    • go-bolt/bolt_mode/consts.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 3: warning: exported type AccessMode should have comment or be unexported (golint)
    • Line 6: warning: exported const ReadMode should have comment (or a comment on this block) or be unexported (golint)
    • go-bolt/protocol/protocol_v1/const.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 4: warning: exported const ProtocolVersion should have comment (or a comment on this block) or be unexported (golint)
    • Line 8: warning: exported var ProtocolVersionBytes should have comment or be unexported (golint)
    • go-bolt/interface.go
    • Line 1: warning: don't use MixedCaps in package name; goBolt should be gobolt (golint)
    • Line 8: warning: comment on exported type IDriver should be of the form "IDriver ..." (with optional leading article) (golint)
    • Line 13: warning: exported type IDriverPool should have comment or be unexported (golint)
    • go-bolt/connection/interface.go
    • Line 8: warning: comment on exported type IResult should be of the form "IResult ..." (with optional leading article) (golint)
    • Line 20: warning: exported type IQuery should have comment or be unexported (golint)
    • Line 44: warning: comment on exported type IConnection should be of the form "IConnection ..." (with optional leading article) (golint)
    • go-bolt/protocol/protocol_v2/bolt.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 12: warning: exported type BoltProtocolV2 should have comment or be unexported (golint)
    • Line 15: warning: exported method BoltProtocolV2.GetResultAvailableAfterKey should have comment or be unexported (golint)
    • Line 19: warning: exported method BoltProtocolV2.GetResultConsumedAfterKey should have comment or be unexported (golint)
    • Line 23: warning: exported method BoltProtocolV2.GetDiscardMessage should have comment or be unexported (golint)
    • Line 27: warning: exported method BoltProtocolV2.GetDiscardAllMessage should have comment or be unexported (golint)
    • Line 31: warning: exported method BoltProtocolV2.SupportsMultiDatabase should have comment or be unexported (golint)
    • Line 35: warning: exported method BoltProtocolV2.GetCloseMessage should have comment or be unexported (golint)
    • Line 39: warning: exported method BoltProtocolV2.GetTxBeginMessage should have comment or be unexported (golint)
    • Line 43: warning: exported method BoltProtocolV2.GetTxCommitMessage should have comment or be unexported (golint)
    • Line 47: warning: exported method BoltProtocolV2.GetTxRollbackMessage should have comment or be unexported (golint)
    • Line 51: warning: exported method BoltProtocolV2.GetInitMessage should have comment or be unexported (golint)
    • Line 55: warning: exported method BoltProtocolV2.GetRunMessage should have comment or be unexported (golint)
    • Line 59: warning: exported method BoltProtocolV2.GetPullAllMessage should have comment or be unexported (golint)
    • Line 63: warning: exported method BoltProtocolV2.Marshal should have comment or be unexported (golint)
    • Line 67: warning: exported method BoltProtocolV2.Unmarshal should have comment or be unexported (golint)
    • Line 71: warning: exported method BoltProtocolV2.NewEncoder should have comment or be unexported (golint)
    • Line 75: warning: exported method BoltProtocolV2.NewDecoder should have comment or be unexported (golint)
    • go-bolt/driver_routing_pool.go
    • Line 1: warning: don't use MixedCaps in package name; goBolt should be gobolt (golint)
    • Line 13: warning: exported type RoutingDriverPool should have comment or be unexported (golint)
    • Line 38: warning: exported method RoutingDriverPool.Open should have comment or be unexported (golint)
    • Line 41: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 46: warning: exported method RoutingDriverPool.Reclaim should have comment or be unexported (golint)
    • Line 50: warning: exported method RoutingDriverPool.Close should have comment or be unexported (golint)
    • go-bolt/structures/messages/tx.go
    • Line 20: warning: exported type CommitMessage should have comment or be unexported (golint)
    • Line 22: warning: exported function NewCommitMessage should have comment or be unexported (golint)
    • Line 26: warning: exported method CommitMessage.Signature should have comment or be unexported (golint)
    • Line 30: warning: exported method CommitMessage.AllFields should have comment or be unexported (golint)
    • Line 34: warning: comment on exported type BeginMessage should be of the form "BeginMessage ..." (with optional leading article) (golint)
    • Line 39: warning: exported function NewBeginMessage should have comment or be unexported (golint)
    • Line 45: warning: exported method BeginMessage.Signature should have comment or be unexported (golint)
    • Line 49: warning: exported method BeginMessage.AllFields should have comment or be unexported (golint)
    • Line 53: warning: exported type RollbackMessage should have comment or be unexported (golint)
    • Line 55: warning: exported function NewRollbackMessage should have comment or be unexported (golint)
    • Line 59: warning: exported method RollbackMessage.Signature should have comment or be unexported (golint)
    • Line 63: warning: exported method RollbackMessage.AllFields should have comment or be unexported (golint)
    • go-bolt/connection_pool_factory.go
    • Line 1: warning: don't use MixedCaps in package name; goBolt should be gobolt (golint)
    • Line 11: warning: exported type ConnectionPooledObjectFactory should have comment or be unexported (golint)
    • Line 15: warning: exported method ConnectionPooledObjectFactory.MakeObject should have comment or be unexported (golint)
    • Line 24: warning: exported method ConnectionPooledObjectFactory.DestroyObject should have comment or be unexported (golint)
    • Line 40: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 45: warning: exported method ConnectionPooledObjectFactory.ValidateObject should have comment or be unexported (golint)
    • Line 62: warning: exported method ConnectionPooledObjectFactory.ActivateObject should have comment or be unexported (golint)
    • Line 90: warning: exported method ConnectionPooledObjectFactory.PassivateObject should have comment or be unexported (golint)
    • go-bolt/protocol/protocol_v1/bolt.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 12: warning: exported type BoltProtocolV1 should have comment or be unexported (golint)
    • Line 15: warning: exported method BoltProtocolV1.GetResultAvailableAfterKey should have comment or be unexported (golint)
    • Line 19: warning: exported method BoltProtocolV1.GetResultConsumedAfterKey should have comment or be unexported (golint)
    • Line 23: warning: exported method BoltProtocolV1.GetDiscardMessage should have comment or be unexported (golint)
    • Line 27: warning: exported method BoltProtocolV1.GetDiscardAllMessage should have comment or be unexported (golint)
    • Line 31: warning: exported method BoltProtocolV1.SupportsMultiDatabase should have comment or be unexported (golint)
    • Line 35: warning: exported method BoltProtocolV1.GetCloseMessage should have comment or be unexported (golint)
    • Line 39: warning: exported method BoltProtocolV1.GetTxBeginMessage should have comment or be unexported (golint)
    • Line 43: warning: exported method BoltProtocolV1.GetTxCommitMessage should have comment or be unexported (golint)
    • Line 47: warning: exported method BoltProtocolV1.GetTxRollbackMessage should have comment or be unexported (golint)
    • Line 51: warning: exported method BoltProtocolV1.GetInitMessage should have comment or be unexported (golint)
    • Line 55: warning: exported method BoltProtocolV1.GetRunMessage should have comment or be unexported (golint)
    • Line 59: warning: exported method BoltProtocolV1.GetPullAllMessage should have comment or be unexported (golint)
    • Line 63: warning: exported method BoltProtocolV1.Marshal should have comment or be unexported (golint)
    • Line 67: warning: exported method BoltProtocolV1.Unmarshal should have comment or be unexported (golint)
    • Line 71: warning: exported method BoltProtocolV1.NewEncoder should have comment or be unexported (golint)
    • Line 75: warning: exported method BoltProtocolV1.NewDecoder should have comment or be unexported (golint)
    • go-bolt/structures/messages/hello.go
    • Line 10: warning: exported type HelloMessage should have comment or be unexported (golint)
    • Line 14: warning: exported function NewHelloMessage should have comment or be unexported (golint)
    • Line 20: warning: exported method HelloMessage.Signature should have comment or be unexported (golint)
    • Line 24: warning: exported method HelloMessage.AllFields should have comment or be unexported (golint)
    • go-bolt/log/log.go
    • Line 35: warning: comment on exported var TraceBytesLog should be of the form "TraceBytesLog ..." (golint)
    • Line 77: warning: exported function TraceBytesFromBuf should have comment or be unexported (golint)
    • Line 85: warning: exported function TraceBytes should have comment or be unexported (golint)
    • go-bolt/client.go
    • Line 1: warning: don't use MixedCaps in package name; goBolt should be gobolt (golint)
    • Line 13: warning: exported type IClient should have comment or be unexported (golint)
    • Line 21: warning: exported type Client should have comment or be unexported (golint)
    • Line 45: warning: exported function NewClient should have comment or be unexported (golint)
    • Line 168: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 207: warning: exported method Client.NewDriver should have comment or be unexported (golint)
    • Line 219: warning: exported method Client.NewDriverPool should have comment or be unexported (golint)
    • Line 222: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • go-bolt/connection/connection.go
    • Line 56: warning: exported type Connection should have comment or be unexported (golint)
    • Line 92: warning: exported function CreateBoltConn should have comment or be unexported (golint)
    • Line 155: warning: exported method Connection.GetConnectionId should have comment or be unexported (golint)
    • Line 159: warning: exported method Connection.SetConnectionId should have comment or be unexported (golint)
    • Line 163: warning: exported method Connection.GetProtocolVersionNumber should have comment or be unexported (golint)
    • Line 167: warning: exported method Connection.GetProtocolVersionBytes should have comment or be unexported (golint)
    • Line 307: warning: exported method Connection.ValidateOpen should have comment or be unexported (golint)
    • Line 324: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 329: warning: comment on exported method Connection.SetChunkSize should be of the form "SetChunkSize ..." (golint)
    • Line 334: warning: comment on exported method Connection.SetTimeout should be of the form "SetTimeout ..." (golint)
    • Line 339: warning: exported method Connection.Exec should have comment or be unexported (golint)
    • Line 343: warning: exported method Connection.ExecWithDb should have comment or be unexported (golint)
    • Line 356: warning: exported method Connection.Query should have comment or be unexported (golint)
    • Line 360: warning: exported method Connection.QueryWithDb should have comment or be unexported (golint)
    • Line 428: warning: exported method Connection.Close should have comment or be unexported (golint)
    • Line 462: warning: exported method Connection.MakeIdle should have comment or be unexported (golint)
    • Line 470: warning: exported method Connection.BeginWithDatabase should have comment or be unexported (golint)
    • Line 529: warning: exported method Connection.Begin should have comment or be unexported (golint)
    • go-bolt/protocol/protocol_v3/bolt.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 12: warning: exported type BoltProtocolV3 should have comment or be unexported (golint)
    • Line 14: warning: exported method BoltProtocolV3.GetResultAvailableAfterKey should have comment or be unexported (golint)
    • Line 18: warning: exported method BoltProtocolV3.GetResultConsumedAfterKey should have comment or be unexported (golint)
    • Line 22: warning: exported method BoltProtocolV3.GetDiscardMessage should have comment or be unexported (golint)
    • Line 26: warning: exported method BoltProtocolV3.GetDiscardAllMessage should have comment or be unexported (golint)
    • Line 30: warning: exported method BoltProtocolV3.SupportsMultiDatabase should have comment or be unexported (golint)
    • Line 34: warning: exported method BoltProtocolV3.GetInitMessage should have comment or be unexported (golint)
    • Line 44: warning: exported method BoltProtocolV3.GetCloseMessage should have comment or be unexported (golint)
    • Line 48: warning: exported method BoltProtocolV3.GetTxBeginMessage should have comment or be unexported (golint)
    • Line 52: warning: exported method BoltProtocolV3.GetTxCommitMessage should have comment or be unexported (golint)
    • Line 56: warning: exported method BoltProtocolV3.GetTxRollbackMessage should have comment or be unexported (golint)
    • Line 60: warning: exported method BoltProtocolV3.GetRunMessage should have comment or be unexported (golint)
    • Line 63: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 68: warning: exported method BoltProtocolV3.GetPullAllMessage should have comment or be unexported (golint)
    • Line 72: warning: exported method BoltProtocolV3.Marshal should have comment or be unexported (golint)
    • Line 76: warning: exported method BoltProtocolV3.Unmarshal should have comment or be unexported (golint)
    • Line 80: warning: exported method BoltProtocolV3.NewEncoder should have comment or be unexported (golint)
    • Line 84: warning: exported method BoltProtocolV3.NewDecoder should have comment or be unexported (golint)
    • go-bolt/protocol/protocol_v4/const.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 4: warning: exported const ProtocolVersion should have comment (or a comment on this block) or be unexported (golint)
    • Line 8: warning: exported var ProtocolVersionBytes should have comment or be unexported (golint)
    • go-bolt/structures/types/point.go
    • Line 4: warning: exported const Point2DStructSignature should have comment (or a comment on this block) or be unexported (golint)
    • Line 11: warning: exported type Point2D should have comment or be unexported (golint)
    • Line 16: warning: exported method Point2D.Signature should have comment or be unexported (golint)
    • Line 20: warning: exported method Point2D.AllFields should have comment or be unexported (golint)
    • Line 24: warning: exported type Point3D should have comment or be unexported (golint)
    • Line 29: warning: exported method Point3D.Signature should have comment or be unexported (golint)
    • Line 33: warning: exported method Point3D.AllFields should have comment or be unexported (golint)
    • go-bolt/structures/messages/goodbye.go
    • Line 10: warning: exported type GoodbyeMessage should have comment or be unexported (golint)
    • Line 12: warning: exported function NewGoodbyeMessage should have comment or be unexported (golint)
    • Line 16: warning: exported method GoodbyeMessage.Signature should have comment or be unexported (golint)
    • Line 20: warning: exported method GoodbyeMessage.AllFields should have comment or be unexported (golint)
    • go-bolt/structures/messages/init.go
    • Line 11: warning: exported const SchemeKey should have comment (or a comment on this block) or be unexported (golint)
    • Line 24: warning: exported function BuildAuthTokenBasicWithRealm should have comment or be unexported (golint)
    • Line 38: warning: exported function BuildAuthTokenBasic should have comment or be unexported (golint)
    • Line 42: warning: exported function BuildAuthTokenKerberos should have comment or be unexported (golint)
    • go-bolt/opt.go
    • Line 1: warning: don't use MixedCaps in package name; goBolt should be gobolt (golint)
    • Line 8: warning: exported type Opt should have comment or be unexported (golint)
    • Line 26: warning: comment on exported function WithHostPort should be of the form "WithHostPort ..." (golint)
    • Line 43: warning: comment on exported function WithRouting should be of the form "WithRouting ..." (golint)
    • Line 59: warning: comment on exported function WithChunkSize should be of the form "WithChunkSize ..." (golint)
    • Line 71: warning: comment on exported function WithBasicAuth should be of the form "WithBasicAuth ..." (golint)
    • Line 85: warning: comment on exported function WithTLS should be of the form "WithTLS ..." (golint)
    • Line 101: warning: comment on exported function WithProtocolVersionNegotiation should be of the form "WithProtocolVersionNegotiation ..." (golint)
    • Line 113: warning: exported function WithProtocolVersionGreaterThan should have comment or be unexported (golint)
    • Line 128: warning: exported function WithProtocolVersionLessThan should have comment or be unexported (golint)
    • Line 143: warning: comment on exported function WithStrictProtocolVersion should be of the form "WithStrictProtocolVersion ..." (golint)
    • Line 159: warning: comment on exported function WithTimeout should be of the form "WithTimeout ..." (golint)
    • go-bolt/driver.go
    • Line 1: warning: don't use MixedCaps in package name; goBolt should be gobolt (golint)
    • Line 12: warning: comment on exported type Driver should be of the form "Driver ..." (with optional leading article) (golint)
    • Line 19: warning: comment on exported method Driver.Open should be of the form "Open ..." (golint)
    • go-bolt/encoding/util.go
    • Line 8: warning: exported function SliceInterfaceToString should have comment or be unexported (golint)
    • Line 20: warning: exported function SliceInterfaceToInt should have comment or be unexported (golint)
    • Line 28: warning: exported function SliceInterfaceToNode should have comment or be unexported (golint)
    • Line 40: warning: exported function SliceInterfaceToRelationship should have comment or be unexported (golint)
    • Line 52: warning: exported function SliceInterfaceToUnboundRelationship should have comment or be unexported (golint)
    • go-bolt/connection/const.go
    • Line 19: warning: exported type QueryParams should have comment or be unexported (golint)
    • Line 21: warning: exported method QueryParams.GetMap should have comment or be unexported (golint)
    • Line 25: warning: exported method QueryParams.GetKeys should have comment or be unexported (golint)
    • Line 36: warning: exported type NeoRows should have comment or be unexported (golint)
    • Line 38: warning: exported method NeoRows.Get2DSlice should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign98%

IneffAssign detects ineffectual assignments in Go code.


misspell97%

Misspell Finds commonly misspelled English words

    • go-bolt/encoding/encoding_v2/encoderV2.go
    • Line 64: warning: "occured" is a misspelling of "occurred" (misspell)
    • Line 69: warning: "occured" is a misspelling of "occurred" (misspell)
    • Line 85: warning: "occured" is a misspelling of "occurred" (misspell)
    • Line 89: warning: "occured" is a misspelling of "occurred" (misspell)
    • Line 418: warning: "occured" is a misspelling of "occurred" (misspell)
    • go-bolt/encoding/encoding_v1/encoderV1.go
    • Line 61: warning: "occured" is a misspelling of "occurred" (misspell)
    • Line 66: warning: "occured" is a misspelling of "occurred" (misspell)
    • Line 80: warning: "occured" is a misspelling of "occurred" (misspell)
    • Line 84: warning: "occured" is a misspelling of "occurred" (misspell)
    • Line 249: warning: "occured" is a misspelling of "occurred" (misspell)