Preparing report...

Report for github.com/solvedata/migrate

A+    Excellent!    Found 38 issues across 100 files

Tweet

gofmt89%

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!


gocyclo95%

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/migrate.go
    • Line 402: warning: cyclomatic complexity 26 of function (*Migrate).read() is high (> 15) (gocyclo)
    • Line 634: warning: cyclomatic complexity 21 of function (*Migrate).readDown() is high (> 15) (gocyclo)
    • Line 534: warning: cyclomatic complexity 21 of function (*Migrate).readUp() is high (> 15) (gocyclo)

golint67%

Golint is a linter for Go source code.

    • migrate/database/firebird/firebird.go
    • Line 12: warning: a blank import should be only in a main or test package, or have a comment justifying it (golint)
    • Line 24: warning: exported var DefaultMigrationsTable should have comment or be unexported (golint)
    • Line 27: warning: exported var ErrNilConfig should have comment or be unexported (golint)
    • Line 30: warning: exported type Config should have comment or be unexported (golint)
    • Line 35: warning: exported type Firebird should have comment or be unexported (golint)
    • Line 45: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 76: warning: exported method Firebird.Open should have comment or be unexported (golint)
    • Line 99: warning: exported method Firebird.Close should have comment or be unexported (golint)
    • Line 108: warning: exported method Firebird.Lock should have comment or be unexported (golint)
    • Line 116: warning: exported method Firebird.Unlock should have comment or be unexported (golint)
    • Line 121: warning: exported method Firebird.Run should have comment or be unexported (golint)
    • Line 136: warning: exported method Firebird.SetVersion should have comment or be unexported (golint)
    • Line 154: warning: exported method Firebird.Version should have comment or be unexported (golint)
    • Line 169: warning: exported method Firebird.Drop should have comment or be unexported (golint)
    • migrate/internal/cli/log.go
    • Line 9: warning: exported type Log should have comment or be unexported (golint)
    • Line 13: warning: exported method Log.Printf should have comment or be unexported (golint)
    • Line 21: warning: exported method Log.Println should have comment or be unexported (golint)
    • Line 29: warning: exported method Log.Verbose should have comment or be unexported (golint)
    • migrate/testing/docker.go
    • Line 25: warning: exported function NewDockerContainer should have comment or be unexported (golint)
    • Line 71: warning: exported method DockerContainer.PullImage should have comment or be unexported (golint)
    • Line 100: warning: exported method DockerContainer.Start should have comment or be unexported (golint)
    • Line 139: warning: exported method DockerContainer.KeepForDebugging should have comment or be unexported (golint)
    • Line 147: warning: exported method DockerContainer.Remove should have comment or be unexported (golint)
    • Line 170: warning: exported method DockerContainer.Inspect should have comment or be unexported (golint)
    • Line 188: warning: exported method DockerContainer.Logs should have comment or be unexported (golint)
    • Line 227: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 232: warning: exported method DockerContainer.Host should have comment or be unexported (golint)
    • Line 243: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 248: warning: exported method DockerContainer.Port should have comment or be unexported (golint)
    • Line 259: warning: exported method DockerContainer.PortFor should have comment or be unexported (golint)
    • Line 270: warning: exported method DockerContainer.NetworkSettings should have comment or be unexported (golint)
    • migrate/source/gitlab/gitlab.go
    • Line 25: warning: exported var ErrNoUserInfo should have comment or be unexported (golint)
    • Line 32: warning: exported type Gitlab should have comment or be unexported (golint)
    • Line 43: warning: exported type Config should have comment or be unexported (golint)
    • Line 46: warning: exported method Gitlab.Open should have comment or be unexported (golint)
    • Line 104: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 156: warning: exported method Gitlab.Close should have comment or be unexported (golint)
    • Line 160: warning: exported method Gitlab.First should have comment or be unexported (golint)
    • Line 163: 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 168: warning: exported method Gitlab.Prev should have comment or be unexported (golint)
    • Line 171: 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 176: warning: exported method Gitlab.Next should have comment or be unexported (golint)
    • Line 179: 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 184: warning: exported method Gitlab.ReadUp should have comment or be unexported (golint)
    • Line 206: warning: exported method Gitlab.ReadDown should have comment or be unexported (golint)
    • migrate/database/ql/ql.go
    • Line 13: warning: a blank import should be only in a main or test package, or have a comment justifying it (golint)
    • Line 22: warning: exported var DefaultMigrationsTable should have comment or be unexported (golint)
    • Line 24: warning: exported var ErrDatabaseDirty should have comment or be unexported (golint)
    • Line 30: warning: exported type Config should have comment or be unexported (golint)
    • Line 35: warning: exported type Ql should have comment or be unexported (golint)
    • Line 42: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 102: warning: exported method Ql.Open should have comment or be unexported (golint)
    • Line 125: warning: exported method Ql.Close should have comment or be unexported (golint)
    • Line 128: warning: exported method Ql.Drop should have comment or be unexported (golint)
    • Line 163: warning: exported method Ql.Lock should have comment or be unexported (golint)
    • Line 170: warning: exported method Ql.Unlock should have comment or be unexported (golint)
    • Line 177: warning: exported method Ql.Run should have comment or be unexported (golint)
    • Line 202: warning: exported method Ql.SetVersion should have comment or be unexported (golint)
    • Line 230: warning: exported method Ql.Version should have comment or be unexported (golint)
    • migrate/database/postgres/postgres.go
    • Line 27: warning: exported var DefaultMigrationsTable should have comment or be unexported (golint)
    • Line 30: warning: exported var ErrNilConfig should have comment or be unexported (golint)
    • Line 36: warning: exported type Config should have comment or be unexported (golint)
    • Line 42: warning: exported type Postgres should have comment or be unexported (golint)
    • Line 52: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 112: warning: exported method Postgres.Open should have comment or be unexported (golint)
    • Line 137: warning: exported method Postgres.Close should have comment or be unexported (golint)
    • Line 146: warning: comment on exported method Postgres.Lock should be of the form "Lock ..." (golint)
    • Line 167: warning: exported method Postgres.Unlock should have comment or be unexported (golint)
    • Line 185: warning: exported method Postgres.Run should have comment or be unexported (golint)
    • Line 253: warning: exported method Postgres.SetVersion should have comment or be unexported (golint)
    • Line 284: warning: exported method Postgres.Version should have comment or be unexported (golint)
    • Line 304: warning: exported method Postgres.Drop should have comment or be unexported (golint)
    • migrate/database/mysql/mysql.go
    • Line 31: warning: exported var DefaultMigrationsTable should have comment or be unexported (golint)
    • Line 34: warning: exported var ErrDatabaseDirty should have comment or be unexported (golint)
    • Line 41: warning: exported type Config should have comment or be unexported (golint)
    • Line 46: warning: exported type Mysql should have comment or be unexported (golint)
    • Line 56: warning: comment on exported function WithInstance should be of the form "WithInstance ..." (golint)
    • Line 191: warning: exported method Mysql.Open should have comment or be unexported (golint)
    • Line 218: warning: exported method Mysql.Close should have comment or be unexported (golint)
    • Line 227: warning: exported method Mysql.Lock should have comment or be unexported (golint)
    • Line 252: warning: exported method Mysql.Unlock should have comment or be unexported (golint)
    • Line 276: warning: exported method Mysql.Run should have comment or be unexported (golint)
    • Line 290: warning: exported method Mysql.SetVersion should have comment or be unexported (golint)
    • Line 321: warning: exported method Mysql.Version should have comment or be unexported (golint)
    • Line 341: warning: exported method Mysql.Drop should have comment or be unexported (golint)
    • migrate/source/github/github.go
    • Line 24: warning: exported var ErrNoUserInfo should have comment or be unexported (golint)
    • Line 31: warning: exported type Github should have comment or be unexported (golint)
    • Line 38: warning: exported type Config should have comment or be unexported (golint)
    • Line 45: warning: exported method Github.Open should have comment or be unexported (golint)
    • Line 91: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 143: warning: exported method Github.Close should have comment or be unexported (golint)
    • Line 147: warning: exported method Github.First should have comment or be unexported (golint)
    • Line 152: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 157: warning: exported method Github.Prev should have comment or be unexported (golint)
    • Line 162: 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 167: warning: exported method Github.Next should have comment or be unexported (golint)
    • Line 172: 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 177: warning: exported method Github.ReadUp should have comment or be unexported (golint)
    • Line 203: warning: exported method Github.ReadDown should have comment or be unexported (golint)
    • migrate/database/driver.go
    • Line 16: warning: exported var ErrLocked should have comment or be unexported (golint)
    • Line 19: warning: exported const NilVersion should have comment or be unexported (golint)
    • migrate/database/testing/testing.go
    • Line 31: warning: exported function TestNilVersion should have comment or be unexported (golint)
    • Line 41: warning: exported function TestLockAndUnlock should have comment or be unexported (golint)
    • Line 102: warning: exported function TestRun should have comment or be unexported (golint)
    • Line 112: warning: exported function TestDrop should have comment or be unexported (golint)
    • Line 118: warning: exported function TestSetVersion should have comment or be unexported (golint)
    • migrate/source/migration.go
    • Line 11: warning: exported const Down should have comment (or a comment on this block) or be unexported (golint)
    • Line 41: warning: exported function NewMigrations should have comment or be unexported (golint)
    • Line 48: warning: exported method Migrations.Append should have comment or be unexported (golint)
    • Line 76: warning: exported method Migrations.First should have comment or be unexported (golint)
    • Line 83: warning: exported method Migrations.Prev should have comment or be unexported (golint)
    • Line 91: warning: exported method Migrations.Next should have comment or be unexported (golint)
    • Line 99: warning: exported method Migrations.Up should have comment or be unexported (golint)
    • Line 108: warning: exported method Migrations.Down should have comment or be unexported (golint)
    • migrate/source/file/file.go
    • Line 19: warning: exported type File should have comment or be unexported (golint)
    • Line 25: warning: exported method File.Open should have comment or be unexported (golint)
    • Line 81: warning: exported method File.Close should have comment or be unexported (golint)
    • Line 86: warning: exported method File.First should have comment or be unexported (golint)
    • Line 93: warning: exported method File.Prev should have comment or be unexported (golint)
    • Line 100: warning: exported method File.Next should have comment or be unexported (golint)
    • Line 107: warning: exported method File.ReadUp should have comment or be unexported (golint)
    • Line 118: warning: exported method File.ReadDown should have comment or be unexported (golint)
    • migrate/database/clickhouse/clickhouse.go
    • Line 17: warning: exported var DefaultMigrationsTable should have comment or be unexported (golint)
    • Line 19: warning: exported var ErrNilConfig should have comment or be unexported (golint)
    • Line 21: warning: exported type Config should have comment or be unexported (golint)
    • Line 31: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 52: warning: exported type ClickHouse should have comment or be unexported (golint)
    • Line 57: warning: exported method ClickHouse.Open should have comment or be unexported (golint)
    • Line 99: warning: exported method ClickHouse.Run should have comment or be unexported (golint)
    • Line 126: warning: exported method ClickHouse.Version should have comment or be unexported (golint)
    • Line 141: warning: exported method ClickHouse.SetVersion should have comment or be unexported (golint)
    • Line 207: warning: exported method ClickHouse.Drop should have comment or be unexported (golint)
    • Line 234: warning: exported method ClickHouse.Lock should have comment or be unexported (golint)
    • Line 235: warning: exported method ClickHouse.Unlock should have comment or be unexported (golint)
    • Line 236: warning: exported method ClickHouse.Close should have comment or be unexported (golint)
    • migrate/database/cockroachdb/cockroachdb.go
    • Line 32: warning: exported var DefaultMigrationsTable should have comment or be unexported (golint)
    • Line 33: warning: exported var DefaultLockTable should have comment or be unexported (golint)
    • Line 36: warning: exported var ErrNilConfig should have comment or be unexported (golint)
    • Line 40: warning: exported type Config should have comment or be unexported (golint)
    • Line 47: warning: exported type CockroachDb should have comment or be unexported (golint)
    • Line 55: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 103: warning: exported method CockroachDb.Open should have comment or be unexported (golint)
    • Line 148: warning: exported method CockroachDb.Close should have comment or be unexported (golint)
    • Line 152: warning: comment on exported method CockroachDb.Lock should be of the form "Lock ..." (golint)
    • Line 188: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 194: warning: comment on exported method CockroachDb.Unlock should be of the form "Unlock ..." (golint)
    • Line 222: warning: exported method CockroachDb.Run should have comment or be unexported (golint)
    • Line 237: warning: exported method CockroachDb.SetVersion should have comment or be unexported (golint)
    • Line 253: warning: exported method CockroachDb.Version should have comment or be unexported (golint)
    • Line 276: warning: exported method CockroachDb.Drop should have comment or be unexported (golint)
    • migrate/database/ksql/ksql.go
    • Line 23: warning: exported var CreateMigrationStreamSQL should have comment or be unexported (golint)
    • Line 31: warning: exported var CreateMigrationTableSQL should have comment or be unexported (golint)
    • Line 38: warning: exported var LatestSchemaMigrationSql should have comment or be unexported (golint)
    • Line 40: warning: exported type MigrationResult should have comment or be unexported (golint)
    • Line 44: warning: exported type MigrationRow should have comment or be unexported (golint)
    • Line 48: warning: exported type Ksql should have comment or be unexported (golint)
    • Line 62: warning: exported method Ksql.Open should have comment or be unexported (golint)
    • Line 89: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 99: warning: exported type Config should have comment or be unexported (golint)
    • Line 101: warning: exported method Ksql.Close should have comment or be unexported (golint)
    • Line 105: warning: exported method Ksql.Lock should have comment or be unexported (golint)
    • Line 109: warning: exported method Ksql.Unlock should have comment or be unexported (golint)
    • Line 113: warning: exported method Ksql.Run should have comment or be unexported (golint)
    • Line 132: warning: should replace errors.New(fmt.Sprintf(...)) with fmt.Errorf(...) (golint)
    • Line 138: warning: comment on exported method Ksql.SetVersion should be of the form "SetVersion ..." (golint)
    • Line 154: warning: comment on exported method Ksql.Version should be of the form "Version ..." (golint)
    • Line 172: warning: exported method Ksql.Drop should have comment or be unexported (golint)
    • Line 239: warning: don't use underscores in Go names; var formatted_query should be formattedQuery (golint)
    • Line 240: warning: don't use underscores in Go names; var req_body should be reqBody (golint)
    • migrate/source/testing/testing.go
    • Line 29: warning: exported function TestFirst should have comment or be unexported (golint)
    • Line 39: warning: exported function TestPrev should have comment or be unexported (golint)
    • Line 68: warning: exported function TestNext should have comment or be unexported (golint)
    • Line 97: warning: exported function TestReadUp should have comment or be unexported (golint)
    • Line 134: warning: exported function TestReadDown should have comment or be unexported (golint)
    • migrate/database/cassandra/cassandra.go
    • Line 23: warning: exported var DefaultMigrationsTable should have comment or be unexported (golint)
    • Line 26: warning: exported var ErrNilConfig should have comment or be unexported (golint)
    • Line 32: warning: exported type Config should have comment or be unexported (golint)
    • Line 38: warning: exported type Cassandra should have comment or be unexported (golint)
    • Line 46: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 73: warning: exported method Cassandra.Open should have comment or be unexported (golint)
    • Line 149: warning: exported method Cassandra.Close should have comment or be unexported (golint)
    • Line 154: warning: exported method Cassandra.Lock should have comment or be unexported (golint)
    • Line 162: warning: exported method Cassandra.Unlock should have comment or be unexported (golint)
    • Line 167: warning: exported method Cassandra.Run should have comment or be unexported (golint)
    • Line 199: warning: exported method Cassandra.SetVersion should have comment or be unexported (golint)
    • Line 214: warning: comment on exported method Cassandra.Version should be of the form "Version ..." (golint)
    • Line 233: warning: exported method Cassandra.Drop should have comment or be unexported (golint)
    • migrate/database/sqlite3/sqlite3.go
    • Line 14: warning: a blank import should be only in a main or test package, or have a comment justifying it (golint)
    • Line 21: warning: exported var DefaultMigrationsTable should have comment or be unexported (golint)
    • Line 23: warning: exported var ErrDatabaseDirty should have comment or be unexported (golint)
    • Line 28: warning: exported type Config should have comment or be unexported (golint)
    • Line 33: warning: exported type Sqlite should have comment or be unexported (golint)
    • Line 40: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 92: warning: exported method Sqlite.Open should have comment or be unexported (golint)
    • Line 117: warning: exported method Sqlite.Close should have comment or be unexported (golint)
    • Line 121: warning: exported method Sqlite.Drop should have comment or be unexported (golint)
    • Line 160: warning: exported method Sqlite.Lock should have comment or be unexported (golint)
    • Line 168: warning: exported method Sqlite.Unlock should have comment or be unexported (golint)
    • Line 176: warning: exported method Sqlite.Run should have comment or be unexported (golint)
    • Line 203: warning: exported method Sqlite.SetVersion should have comment or be unexported (golint)
    • Line 231: warning: exported method Sqlite.Version should have comment or be unexported (golint)
    • migrate/database/mongodb/mongodb.go
    • Line 22: warning: exported var DefaultMigrationsCollection should have comment or be unexported (golint)
    • Line 25: warning: exported var ErrNoDatabaseName should have comment or be unexported (golint)
    • Line 29: warning: exported type Mongo should have comment or be unexported (golint)
    • Line 36: warning: exported type Config should have comment or be unexported (golint)
    • Line 47: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 66: warning: exported method Mongo.Open should have comment or be unexported (golint)
    • Line 99: warning: exported method Mongo.SetVersion should have comment or be unexported (golint)
    • Line 111: warning: exported method Mongo.Version should have comment or be unexported (golint)
    • Line 124: warning: exported method Mongo.Run should have comment or be unexported (golint)
    • Line 177: warning: exported method Mongo.Close should have comment or be unexported (golint)
    • Line 181: warning: exported method Mongo.Drop should have comment or be unexported (golint)
    • Line 185: warning: exported method Mongo.Lock should have comment or be unexported (golint)
    • Line 189: warning: exported method Mongo.Unlock should have comment or be unexported (golint)
    • migrate/database/stub/stub.go
    • Line 15: warning: exported type Stub should have comment or be unexported (golint)
    • Line 27: warning: exported method Stub.Open should have comment or be unexported (golint)
    • Line 36: warning: exported type Config should have comment or be unexported (golint)
    • Line 38: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 47: warning: exported method Stub.Close should have comment or be unexported (golint)
    • Line 51: warning: exported method Stub.Lock should have comment or be unexported (golint)
    • Line 59: warning: exported method Stub.Unlock should have comment or be unexported (golint)
    • Line 64: warning: exported method Stub.Run should have comment or be unexported (golint)
    • Line 74: warning: exported method Stub.SetVersion should have comment or be unexported (golint)
    • Line 80: warning: exported method Stub.Version should have comment or be unexported (golint)
    • Line 84: warning: exported const DROP should have comment or be unexported (golint)
    • Line 86: warning: exported method Stub.Drop should have comment or be unexported (golint)
    • Line 93: warning: exported method Stub.EqualSequence should have comment or be unexported (golint)
    • migrate/source/stub/stub.go
    • Line 17: warning: exported type Config should have comment or be unexported (golint)
    • Line 22: warning: exported type Stub should have comment or be unexported (golint)
    • Line 29: warning: exported method Stub.Open should have comment or be unexported (golint)
    • Line 37: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 45: warning: exported method Stub.Close should have comment or be unexported (golint)
    • Line 49: warning: exported method Stub.First should have comment or be unexported (golint)
    • Line 52: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 57: warning: exported method Stub.Prev should have comment or be unexported (golint)
    • Line 60: 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 65: warning: exported method Stub.Next should have comment or be unexported (golint)
    • Line 68: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 73: warning: exported method Stub.ReadUp should have comment or be unexported (golint)
    • Line 80: warning: exported method Stub.ReadDown should have comment or be unexported (golint)
    • migrate/source/github_ee/github_ee.go
    • Line 1: warning: don't use an underscore in package name (golint)
    • Line 20: warning: exported type GithubEE should have comment or be unexported (golint)
    • Line 24: warning: exported method GithubEE.Open should have comment or be unexported (golint)
    • migrate/database/redshift/redshift.go
    • Line 26: warning: exported var DefaultMigrationsTable should have comment or be unexported (golint)
    • Line 29: warning: exported var ErrNilConfig should have comment or be unexported (golint)
    • Line 33: warning: exported type Config should have comment or be unexported (golint)
    • Line 38: warning: exported type Redshift should have comment or be unexported (golint)
    • Line 47: warning: exported function WithInstance should have comment or be unexported (golint)
    • Line 93: warning: exported method Redshift.Open should have comment or be unexported (golint)
    • Line 118: warning: exported method Redshift.Close should have comment or be unexported (golint)
    • Line 127: warning: comment on exported method Redshift.Lock should be of the form "Lock ..." (golint)
    • Line 136: warning: exported method Redshift.Unlock should have comment or be unexported (golint)
    • Line 141: warning: exported method Redshift.Run should have comment or be unexported (golint)
    • Line 209: warning: exported method Redshift.SetVersion should have comment or be unexported (golint)
    • Line 240: warning: exported method Redshift.Version should have comment or be unexported (golint)
    • Line 260: warning: exported method Redshift.Drop should have comment or be unexported (golint)
    • migrate/source/parse.go
    • Line 10: warning: exported var ErrParse should have comment or be unexported (golint)
    • Line 14: warning: exported var DefaultParse should have comment or be unexported (golint)
    • migrate/migrate.go
    • Line 32: warning: exported var ErrNoChange should have comment or be unexported (golint)
    • Line 50: warning: exported type ErrDirty should have comment or be unexported (golint)
    • Line 58: warning: exported type Migrate should have comment or be unexported (golint)
    • migrate/testing/testing.go
    • Line 13: warning: exported type IsReadyFunc should have comment or be unexported (golint)
    • Line 15: warning: exported type TestFunc should have comment or be unexported (golint)
    • Line 17: warning: exported type Version should have comment or be unexported (golint)
    • Line 23: warning: exported function ParallelTest should have comment or be unexported (golint)
    • Line 97: warning: exported type Instance should have comment or be unexported (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign97%

IneffAssign detects ineffectual assignments in Go code.

    • migrate/cmd/migrate/main.go
    • Line 4: warning: no required module provides package github.com/solvedata/migrate/database/ksql; to add it: (ineffassign)
    • Line 4: warning: could not import github.com/solvedata/migrate/database/ksql (invalid package name: "") (ineffassign)

misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!