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!
Golint is a linter for Go source code.
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.
-
buntdb/buntdb_test.go
- Line 604: warning: cyclomatic complexity 90 of function TestVariousTx() is high (> 15) (gocyclo)
- Line 1804: warning: cyclomatic complexity 33 of function TestBasic() is high (> 15) (gocyclo)
- Line 235: warning: cyclomatic complexity 32 of function TestIndexTransaction() is high (> 15) (gocyclo)
- Line 1598: warning: cyclomatic complexity 28 of function TestShrink() is high (> 15) (gocyclo)
- Line 2603: warning: cyclomatic complexity 22 of function TestOnExpiredSync() is high (> 15) (gocyclo)
- Line 1711: warning: cyclomatic complexity 22 of function TestVariousIndexOperations() is high (> 15) (gocyclo)
- Line 2698: warning: cyclomatic complexity 19 of function TestTransactionLeak() is high (> 15) (gocyclo)
- Line 1349: warning: cyclomatic complexity 17 of function TestDatabaseFormat() is high (> 15) (gocyclo)
- Line 2229: warning: cyclomatic complexity 16 of function benchOpenFillData() is high (> 15) (gocyclo)
-
buntdb/buntdb.go
- Line 759: warning: cyclomatic complexity 59 of function (*DB).readLoad() is high (> 15) (gocyclo)
- Line 530: warning: cyclomatic complexity 25 of function (*DB).backgroundManager() is high (> 15) (gocyclo)
- Line 619: warning: cyclomatic complexity 23 of function (*DB).Shrink() is high (> 15) (gocyclo)
- Line 2148: warning: cyclomatic complexity 17 of function IndexString() is high (> 15) (gocyclo)
- Line 1549: warning: cyclomatic complexity 17 of function (*Tx).scan() is high (> 15) (gocyclo)
- Line 2005: warning: cyclomatic complexity 16 of function (*Tx).createIndex() is high (> 15) (gocyclo)
IneffAssign detects ineffectual assignments in Go code.
No problems detected. Good job!
Checks whether your project has a LICENSE file.
No problems detected. Good job!
Misspell Finds commonly misspelled English words
No problems detected. Good job!