Preparing report...

Report for github.com/smartystreets/goconvey

A+    Excellent!    Found 44 issues across 73 files

Tweet

gofmt94%

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!


gocyclo100%

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!


golint41%

Golint is a linter for Go source code.

    • goconvey/examples/bowling_game.go
    • Line 17: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 23: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 41: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 46: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 52: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 57: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 62: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/web/server/parser/testParser.go
    • Line 34: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 42: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 50: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 79: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 86: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 95: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 102: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 114: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 119: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 130: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/convey/reporting/statistics.go
    • Line 8: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 10: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 12: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 29: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 31: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 40: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 46: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 52: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 57: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 61: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 70: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 76: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 82: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 86: warning: exported function NewStatisticsReporter should have comment or be unexported (golint)
    • goconvey/web/server/api/server_test.go
    • Line 293: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 297: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 309: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 322: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 332: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 343: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 353: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 364: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 374: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 385: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 393: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 403: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 413: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 441: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 445: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 451: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/convey/nilReporter.go
    • Line 9: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 10: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 11: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 12: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 13: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 14: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/web/server/executor/tester.go
    • Line 12: warning: exported type ConcurrentTester should have comment or be unexported (golint)
    • Line 17: warning: exported method ConcurrentTester.SetBatchSize should have comment or be unexported (golint)
    • Line 17: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 22: warning: exported method ConcurrentTester.TestAll should have comment or be unexported (golint)
    • Line 22: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 31: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 49: warning: exported function NewConcurrentTester should have comment or be unexported (golint)
    • goconvey/web/server/system/shell.go
    • Line 15: warning: exported type Shell should have comment or be unexported (golint)
    • Line 22: warning: exported function NewShell should have comment or be unexported (golint)
    • Line 31: warning: exported method Shell.GoTest should have comment or be unexported (golint)
    • Line 31: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 131: warning: exported type Command should have comment or be unexported (golint)
    • Line 140: warning: exported function NewCommand should have comment or be unexported (golint)
    • Line 148: warning: exported method Command.Execute should have comment or be unexported (golint)
    • Line 148: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/convey/reporting/dot.go
    • Line 7: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 9: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 11: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 28: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 30: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 32: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 36: warning: exported function NewDotReporter should have comment or be unexported (golint)
    • goconvey/convey/reporting/init.go
    • Line 19: warning: exported function BuildJsonReporter should have comment or be unexported (golint)
    • Line 25: warning: exported function BuildDotReporter should have comment or be unexported (golint)
    • Line 33: warning: exported function BuildStoryReporter should have comment or be unexported (golint)
    • Line 41: warning: exported function BuildSilentReporter should have comment or be unexported (golint)
    • Line 52: warning: don't use underscores in Go names; var error_ should be error (golint)
    • Line 71: warning: exported function SuppressConsoleStatistics should have comment or be unexported (golint)
    • Line 72: warning: exported function PrintConsoleStatistics should have comment or be unexported (golint)
    • Line 89: warning: comment on exported type T should be of the form "T ..." (with optional leading article) (golint)
    • goconvey/web/server/api/server.go
    • Line 15: warning: exported type HTTPServer should have comment or be unexported (golint)
    • Line 24: warning: exported method HTTPServer.ReceiveUpdate should have comment or be unexported (golint)
    • Line 24: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 29: warning: exported method HTTPServer.Watch should have comment or be unexported (golint)
    • Line 29: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 37: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 54: warning: exported method HTTPServer.Ignore should have comment or be unexported (golint)
    • Line 54: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 64: warning: exported method HTTPServer.Reinstate should have comment or be unexported (golint)
    • Line 64: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 74: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 89: warning: exported method HTTPServer.Status should have comment or be unexported (golint)
    • Line 89: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 94: warning: exported method HTTPServer.LongPollStatus should have comment or be unexported (golint)
    • Line 94: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 120: warning: exported method HTTPServer.Results should have comment or be unexported (golint)
    • Line 120: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 132: warning: exported method HTTPServer.Execute should have comment or be unexported (golint)
    • Line 132: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 136: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 140: warning: exported method HTTPServer.TogglePause should have comment or be unexported (golint)
    • Line 140: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 152: warning: exported function NewHTTPServer should have comment or be unexported (golint)
    • goconvey/convey/doc.go
    • Line 191: warning: comment on exported function Println should be of the form "Println ..." (golint)
    • Line 197: warning: comment on exported function Printf should be of the form "Printf ..." (golint)
    • goconvey/convey/gotest/utils.go
    • Line 11: warning: exported function ResolveExternalCaller should have comment or be unexported (golint)
    • Line 12: warning: don't use underscores in Go names; var caller_id should be callerID (golint)
    • goconvey/web/server/parser/package_parser_test.go
    • Line 163: warning: don't use underscores in Go names; const input_NoGoFiles should be inputNoGoFiles (golint)
    • Line 165: warning: don't use underscores in Go names; var expected_NoGoFiles should be expectedNoGoFiles (golint)
    • Line 171: warning: don't use underscores in Go names; const input_NoTestFiles should be inputNoTestFiles (golint)
    • Line 173: warning: don't use underscores in Go names; var expected_NoTestFiles should be expectedNoTestFiles (golint)
    • Line 179: warning: don't use underscores in Go names; const input_NoTestFunctions should be inputNoTestFunctions (golint)
    • Line 183: warning: don't use underscores in Go names; var expected_NoTestFunctions should be expectedNoTestFunctions (golint)
    • Line 189: warning: don't use underscores in Go names; const input_BuildFailed_InvalidPackageDeclaration should be inputBuildFailedInvalidPackageDeclaration (golint)
    • Line 195: warning: don't use underscores in Go names; var expected_BuildFailed_InvalidPackageDeclaration should be expectedBuildFailedInvalidPackageDeclaration (golint)
    • Line 201: warning: don't use underscores in Go names; const input_BuildFailed_CantFindPackage should be inputBuildFailedCantFindPackage (golint)
    • Line 208: warning: don't use underscores in Go names; var expected_BuildFailed_CantFindPackage should be expectedBuildFailedCantFindPackage (golint)
    • Line 214: warning: don't use underscores in Go names; const input_BuildFailed_ConfictingImport should be inputBuildFailedConfictingImport (golint)
    • Line 218: warning: don't use underscores in Go names; var expected_BuildFailed_ConflictingImport should be expectedBuildFailedConflictingImport (golint)
    • Line 224: warning: don't use underscores in Go names; const input_BuildFailed_OtherErrors should be inputBuildFailedOtherErrors (golint)
    • Line 240: warning: don't use underscores in Go names; var expected_BuildFailed_OtherErrors should be expectedBuildFailedOtherErrors (golint)
    • Line 246: warning: don't use underscores in Go names; const input_BuildFailed_ImportCycle should be inputBuildFailedImportCycle (golint)
    • Line 252: warning: don't use underscores in Go names; var expected_BuildFailed_ImportCycle should be expectedBuildFailedImportCycle (golint)
    • Line 258: warning: don't use underscores in Go names; const inputOldSchool_Passes should be inputOldSchoolPasses (golint)
    • Line 273: warning: don't use underscores in Go names; var expectedOldSchool_Passes should be expectedOldSchoolPasses (golint)
    • Line 310: warning: don't use underscores in Go names; const inputOldSchool_Fails should be inputOldSchoolFails (golint)
    • Line 327: warning: don't use underscores in Go names; var expectedOldSchool_Fails should be expectedOldSchoolFails (golint)
    • Line 371: warning: don't use underscores in Go names; const inputOldSchoolWithDiff2_Fails should be inputOldSchoolWithDiff2Fails (golint)
    • Line 423: warning: don't use underscores in Go names; var expectedOldSchoolWithDiff2_Fails should be expectedOldSchoolWithDiff2Fails (golint)
    • Line 464: warning: don't use underscores in Go names; const inputOldSchoolWithDiff_Fails should be inputOldSchoolWithDiffFails (golint)
    • Line 498: warning: don't use underscores in Go names; var expectedOldSchoolWithDiff_Fails should be expectedOldSchoolWithDiffFails (golint)
    • Line 551: warning: don't use underscores in Go names; const inputOldSchool_Panics should be inputOldSchoolPanics (golint)
    • Line 578: warning: don't use underscores in Go names; var expectedOldSchool_Panics should be expectedOldSchoolPanics (golint)
    • Line 615: warning: don't use underscores in Go names; const inputGoConvey_Malformed should be inputGoConveyMalformed (golint)
    • Line 704: warning: don't use underscores in Go names; const inputGoConvey_WithRandomOutput should be inputGoConveyWithRandomOutput (golint)
    • Line 753: warning: don't use underscores in Go names; var expectedGoConvey_WithRandomOutput should be expectedGoConveyWithRandomOutput (golint)
    • Line 804: warning: don't use underscores in Go names; const inputOldSchool_PassesButCoverageIsBogus should be inputOldSchoolPassesButCoverageIsBogus (golint)
    • Line 816: warning: don't use underscores in Go names; var expectedOldSchool_PassesButCoverageIsBogus should be expectedOldSchoolPassesButCoverageIsBogus (golint)
    • Line 1072: warning: don't use underscores in Go names; const inputGinkgo_Passes should be inputGinkgoPasses (golint)
    • Line 1078: warning: don't use underscores in Go names; var expectedGinkgo_Passes should be expectedGinkgoPasses (golint)
    • Line 1090: warning: don't use underscores in Go names; const inputGinkgo_Fails should be inputGinkgoFails (golint)
    • Line 1102: warning: don't use underscores in Go names; var expectedGinkgo_Fails should be expectedGinkgoFails (golint)
    • goconvey/convey/reporting/gotest.go
    • Line 5: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 9: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 11: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 17: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 19: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 23: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 27: warning: exported function NewGoTestReporter should have comment or be unexported (golint)
    • goconvey/convey/reporting/printer_test.go
    • Line 170: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 175: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/convey/reporting/problems.go
    • Line 12: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 14: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 16: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 24: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 26: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 31: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 41: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 50: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 60: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 64: warning: exported function NewProblemReporter should have comment or be unexported (golint)
    • Line 71: warning: exported function NewSilentProblemReporter should have comment or be unexported (golint)
    • Line 77: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/web/server/executor/tester_test.go
    • Line 98: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 103: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 108: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 113: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 127: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 140: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 144: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 160: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 173: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 193: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 197: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 201: warning: don't use underscores in Go names; var concurrentWith_x should be concurrentWithX (golint)
    • Line 221: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 225: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 229: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 240: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/convey/context.go
    • Line 137: warning: don't use underscores in Go names; var inner_ctx should be innerCtx (golint)
    • Line 184: 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 216: warning: receiver name c should be consistent with previous receiver name ctx for context (golint)
    • goconvey/examples/bowling_game_test.go
    • Line 69: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 74: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 78: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/web/server/watch/functional_core.go
    • Line 13: warning: exported function Categorize should have comment or be unexported (golint)
    • Line 52: warning: exported function ParseProfile should have comment or be unexported (golint)
    • Line 90: warning: exported function CreateFolders should have comment or be unexported (golint)
    • Line 102: warning: exported function LimitDepth should have comment or be unexported (golint)
    • Line 116: warning: exported function AttachProfiles should have comment or be unexported (golint)
    • Line 126: warning: exported function MarkIgnored should have comment or be unexported (golint)
    • Line 142: warning: exported function ActiveFolders should have comment or be unexported (golint)
    • Line 157: warning: exported function Sum should have comment or be unexported (golint)
    • goconvey/convey/reporting_hooks_test.go
    • Line 270: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 274: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 278: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 294: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 298: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 302: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 306: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 314: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 315: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/convey/reporting/console.go
    • Line 10: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 14: warning: exported function NewConsole should have comment or be unexported (golint)
    • goconvey/convey/reporting/json.go
    • Line 12: warning: exported type JsonReporter should have comment or be unexported (golint)
    • Line 20: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 22: warning: exported method JsonReporter.BeginStory should have comment or be unexported (golint)
    • Line 22: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 24: warning: exported method JsonReporter.Enter should have comment or be unexported (golint)
    • Line 24: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 35: warning: exported method JsonReporter.Report should have comment or be unexported (golint)
    • Line 35: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 39: warning: exported method JsonReporter.Exit should have comment or be unexported (golint)
    • Line 39: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 43: warning: exported method JsonReporter.EndStory should have comment or be unexported (golint)
    • Line 43: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 47: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 61: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 67: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 72: warning: exported function NewJsonReporter should have comment or be unexported (golint)
    • Line 79: warning: exported const OpenJson should have comment or be unexported (golint)
    • Line 80: warning: exported const CloseJson should have comment or be unexported (golint)
    • goconvey/convey/reporting/reporter.go
    • Line 5: warning: exported type Reporter should have comment or be unexported (golint)
    • Line 16: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 17: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 18: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 19: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 20: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 22: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 29: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 35: warning: exported function NewReporters should have comment or be unexported (golint)
    • goconvey/convey/reporting/reporter_test.go
    • Line 76: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 79: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 82: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 85: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 88: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 91: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/web/server/watch/integration.go
    • Line 13: warning: exported type Watcher should have comment or be unexported (golint)
    • Line 30: warning: exported function NewWatcher should have comment or be unexported (golint)
    • Line 46: warning: exported method Watcher.Listen should have comment or be unexported (golint)
    • Line 46: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 66: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 110: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 115: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 128: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 151: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 155: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 159: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 167: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 174: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 179: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/web/server/parser/packageParser.go
    • Line 17: warning: exported function ParsePackageResults should have comment or be unexported (golint)
    • Line 43: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 48: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 65: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 84: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 89: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 106: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 115: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 124: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 135: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 141: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 152: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 177: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/convey/reporting/story.go
    • Line 21: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 23: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 37: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 54: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 59: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 64: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 68: warning: exported function NewStoryReporter should have comment or be unexported (golint)
    • goconvey/convey/reporting/printer.go
    • Line 9: warning: exported type Printer should have comment or be unexported (golint)
    • Line 14: warning: exported method Printer.Println should have comment or be unexported (golint)
    • Line 14: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 19: warning: exported method Printer.Print should have comment or be unexported (golint)
    • Line 19: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 24: warning: exported method Printer.Insert should have comment or be unexported (golint)
    • Line 24: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 28: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 40: warning: don't use underscores in Go names; var fmt_Sprintf should be fmtSprintf (golint)
    • Line 42: warning: exported method Printer.Indent should have comment or be unexported (golint)
    • Line 42: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 46: warning: exported method Printer.Dedent should have comment or be unexported (golint)
    • Line 46: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 52: warning: exported function NewPrinter should have comment or be unexported (golint)
    • goconvey/convey/reporting/reports.go
    • Line 14: warning: exported type ScopeReport should have comment or be unexported (golint)
    • Line 20: warning: exported function NewScopeReport should have comment or be unexported (golint)
    • Line 31: warning: exported type ScopeResult should have comment or be unexported (golint)
    • Line 52: warning: exported type StoryReport should have comment or be unexported (golint)
    • Line 59: warning: exported function NewStoryReport should have comment or be unexported (golint)
    • Line 79: warning: comment on exported type FailureView should be of the form "FailureView ..." (with optional leading article) (golint)
    • Line 89: warning: exported type AssertionResult should have comment or be unexported (golint)
    • Line 100: warning: exported function NewFailureReport should have comment or be unexported (golint)
    • Line 118: warning: exported function NewErrorReport should have comment or be unexported (golint)
    • Line 125: warning: exported function NewSuccessReport should have comment or be unexported (golint)
    • Line 128: warning: exported function NewSkipReport should have comment or be unexported (golint)
    • goconvey/web/server/messaging/messages.go
    • Line 5: warning: exported type WatcherCommand should have comment or be unexported (golint)
    • Line 10: warning: exported type WatcherInstruction should have comment or be unexported (golint)
    • Line 12: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 34: warning: exported const WatcherPause should have comment (or a comment on this block) or be unexported (golint)
    • Line 45: warning: exported type Folders should have comment or be unexported (golint)
    • Line 47: warning: exported type Folder should have comment or be unexported (golint)
    • goconvey/web/server/executor/coordinator.go
    • Line 21: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 27: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 33: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 53: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 59: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/web/server/executor/executor.go
    • Line 11: warning: exported const Idle should have comment (or a comment on this block) or be unexported (golint)
    • Line 15: warning: exported type Executor should have comment or be unexported (golint)
    • Line 23: warning: exported method Executor.Status should have comment or be unexported (golint)
    • Line 23: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 27: warning: exported method Executor.ClearStatusFlag should have comment or be unexported (golint)
    • Line 27: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 33: warning: exported method Executor.ExecuteTests should have comment or be unexported (golint)
    • Line 33: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 40: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 45: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 54: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 72: warning: exported function NewExecutor should have comment or be unexported (golint)
    • goconvey/web/server/executor/executor_test.go
    • Line 59: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 63: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 69: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 75: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 115: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 116: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 122: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 139: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 141: warning: don't use underscores in Go names; range var package_ should be package (golint)
    • Line 151: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • goconvey/web/server/contract/result.go
    • Line 8: warning: exported type Package should have comment or be unexported (golint)
    • Line 22: warning: exported function NewPackage should have comment or be unexported (golint)
    • Line 35: warning: exported method Package.Active should have comment or be unexported (golint)
    • Line 35: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 39: warning: exported method Package.HasUsableResult should have comment or be unexported (golint)
    • Line 39: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 43: warning: exported type CompleteOutput should have comment or be unexported (golint)
    • Line 50: warning: exported var Ignored should have comment or be unexported (golint)
    • Line 63: warning: exported type PackageResult should have comment or be unexported (golint)
    • Line 72: warning: exported function NewPackageResult should have comment or be unexported (golint)
    • Line 80: warning: exported type TestResult should have comment or be unexported (golint)
    • Line 94: warning: exported function NewTestResult should have comment or be unexported (golint)
    • goconvey/web/server/parser/parser.go
    • Line 9: warning: exported type Parser should have comment or be unexported (golint)
    • Line 13: warning: exported method Parser.Parse should have comment or be unexported (golint)
    • Line 13: warning: receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (golint)
    • Line 28: warning: exported function NewParser 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.


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!