Gofmt formats Go programs. We run gofmt -s
on your code, where -s
is for the "simplify" command
No problems detected. Good job!
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!
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.
No problems detected. Good job!
Golint is a linter for Go source code.
-
echo-session/cookie_store.go
- Line 7: warning: exported type CookieStore should have comment or be unexported (golint)
- Line 11: warning: comment on exported function NewCookieStore should be of the form "NewCookieStore ..." (golint)
-
echo-session/filesystem_store.go
- Line 7: warning: exported type FileSystemStore should have comment or be unexported (golint)
- Line 12: warning: comment on exported function NewFileSystemStoreStore should be of the form "NewFileSystemStoreStore ..." (golint)
-
echo-session/postgres_store.go
- Line 10: warning: exported type PostgresStore should have comment or be unexported (golint)
- Line 14: warning: exported function NewPostgresStore should have comment or be unexported (golint)
- Line 22: warning: exported function NewPostgresStoreFromPool should have comment or be unexported (golint)
-
echo-session/redis_store.go
- Line 9: warning: exported type RedisStore should have comment or be unexported (golint)
- Line 13: warning: comment on exported function NewRedisStore should be of the form "NewRedisStore ..." (golint)
- Line 34: warning: comment on exported function NewRedisStoreWithPool should be of the form "NewRedisStoreWithPool ..." (golint)
- Line 52: warning: comment on exported function NewRedisStoreWithDB should be of the form "NewRedisStoreWithDB ..." (golint)
-
echo-session/session.go
- Line 13: warning: exported const DefaultKey should have comment (or a comment on this block) or be unexported (golint)
- Line 17: warning: exported type Store should have comment or be unexported (golint)
- Line 62: warning: exported function Sessions should have comment or be unexported (golint)
- Line 150: warning: comment on exported function Default should be of the form "Default ..." (golint)
Checks whether your project has a LICENSE file.
No problems detected. Good job!
IneffAssign detects ineffectual assignments in Go code.
No problems detected. Good job!
Misspell Finds commonly misspelled English words
No problems detected. Good job!