Preparing report...

Report for github.com/dzonerzy/gowpt

A    Great!    Found 14 issues across 15 files

Tweet

gofmt93%

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!


gocyclo80%

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.


golint20%

Golint is a linter for Go source code.

    • gowpt/src/engine.go
    • Line 84: warning: exported function Request should have comment or be unexported (golint)
    • Line 84: warning: don't use underscores in Go names; func parameter req_num should be reqNum (golint)
    • Line 148: warning: don't use underscores in Go names; var s_req should be sReq (golint)
    • Line 149: warning: don't use underscores in Go names; var s_res should be sRes (golint)
    • Line 156: warning: don't use underscores in Go names; var tmp_res should be tmpRes (golint)
    • Line 161: warning: don't use underscores in Go names; var tmp_response should be tmpResponse (golint)
    • Line 180: warning: exported function Dispose should have comment or be unexported (golint)
    • Line 231: warning: don't use underscores in Go names; var fuzzed_data should be fuzzedData (golint)
    • Line 232: warning: don't use underscores in Go names; var tmp_url should be tmpURL (golint)
    • Line 236: warning: don't use underscores in Go names; var str_wordlist should be strWordlist (golint)
    • Line 237: warning: don't use underscores in Go names; var slice_wordlist should be sliceWordlist (golint)
    • Line 239: warning: don't use underscores in Go names; var n_encoders should be nEncoders (golint)
    • Line 243: warning: don't use underscores in Go names; var max_wordlist_encoders should be maxWordlistEncoders (golint)
    • Line 244: warning: don't use underscores in Go names; var current_request should be currentRequest (golint)
    • Line 289: warning: don't use underscores in Go names; var header_vals should be headerVals (golint)
    • Line 291: warning: don't use underscores in Go names; var header_fuzz should be headerFuzz (golint)
    • Line 302: warning: don't use underscores in Go names; var tmp_data should be tmpData (golint)
    • Line 303: warning: don't use underscores in Go names; var tmp_req should be tmpReq (golint)
    • Line 306: warning: don't use underscores in Go names; var full_url should be fullURL (golint)
    • Line 312: warning: don't use underscores in Go names; var full_url_parsed should be fullURLParsed (golint)
    • gowpt/src/fuzzmenu.go
    • Line 12: warning: don't use underscores in Go names; var tmp_search_pos should be tmpSearchPos (golint)
    • Line 14: warning: don't use underscores in Go names; var r_cur should be rCur (golint)
    • Line 17: warning: don't use underscores in Go names; var draw_item should be drawItem (golint)
    • Line 18: warning: don't use underscores in Go names; var search_write_pos should be searchWritePos (golint)
    • Line 19: warning: don't use underscores in Go names; var search_term should be searchTerm (golint)
    • Line 20: warning: don't use underscores in Go names; var goto_req should be gotoReq (golint)
    • Line 21: warning: don't use underscores in Go names; var request_search_pos should be requestSearchPos (golint)
    • Line 25: warning: exported type ByRequestNumber should have comment or be unexported (golint)
    • Line 31: warning: exported type ByTagsASC should have comment or be unexported (golint)
    • Line 37: warning: exported type ByTagsDESC should have comment or be unexported (golint)
    • Line 43: warning: exported type ByHTTPCodeASC should have comment or be unexported (golint)
    • Line 49: warning: exported type ByHTTPCodeDESC should have comment or be unexported (golint)
    • Line 55: warning: exported type ByWordsASC should have comment or be unexported (golint)
    • Line 61: warning: exported type ByWordsDESC should have comment or be unexported (golint)
    • Line 67: warning: exported type ByCharsASC should have comment or be unexported (golint)
    • Line 73: warning: exported type ByCharsDESC should have comment or be unexported (golint)
    • Line 79: warning: exported type ByLinesASC should have comment or be unexported (golint)
    • Line 85: warning: exported type ByLinesDESC should have comment or be unexported (golint)
    • Line 91: warning: exported type ByID should have comment or be unexported (golint)
    • Line 358: warning: don't use underscores in Go names; var goto_str should be gotoStr (golint)
    • Line 485: warning: don't use underscores in Go names; var event_queue should be eventQueue (golint)
    • gowpt/src/global.go
    • Line 11: warning: exported type Encoder should have comment or be unexported (golint)
    • Line 13: warning: exported type Result should have comment or be unexported (golint)
    • Line 17: warning: don't use underscores in Go names; struct field request_response should be requestResponse (golint)
    • Line 18: warning: don't use underscores in Go names; struct field request_number should be requestNumber (golint)
    • Line 26: warning: don't use underscores in Go names; var max_concurrency should be maxConcurrency (golint)
    • Line 29: warning: exported const POSITION_URL should have comment (or a comment on this block) or be unexported (golint)
    • Line 35: warning: exported type Configuration should have comment or be unexported (golint)
    • Line 41: warning: don't use underscores in Go names; struct field from_proxy should be fromProxy (golint)
    • Line 50: warning: don't use underscores in Go names; struct field keyword_position should be keywordPosition (golint)
    • Line 51: warning: don't use underscores in Go names; struct field upstream_proxy should be upstreamProxy (golint)
    • Line 52: warning: don't use underscores in Go names; struct field upstream_url should be upstreamURL (golint)
    • Line 57: warning: don't use underscores in Go names; struct field plugin_dir should be pluginDir (golint)
    • Line 58: warning: don't use underscores in Go names; struct field base_request should be baseRequest (golint)
    • Line 61: warning: exported type Stats should have comment or be unexported (golint)
    • Line 77: warning: exported const DRAW_STATS should have comment (or a comment on this block) or be unexported (golint)
    • Line 84: warning: exported const CALLBACK_EVERY_KEY should have comment (or a comment on this block) or be unexported (golint)
    • Line 87: warning: exported var MAX_FUZZ_KEYWORD should have comment or be unexported (golint)
    • Line 89: warning: exported var JSVM should have comment or be unexported (golint)
    • Line 91: warning: exported var JSScanVM should have comment or be unexported (golint)
    • Line 93: warning: exported type JSHTTPInterceptor should have comment or be unexported (golint)
    • Line 95: warning: exported var HTTPInterceptor should have comment or be unexported (golint)
    • Line 99: warning: exported type Headers should have comment or be unexported (golint)
    • Line 105: warning: exported method Headers.Set should have comment or be unexported (golint)
    • Line 112: warning: exported var ScannerPlugins should have comment or be unexported (golint)
    • Line 114: warning: exported var ScannerResults should have comment or be unexported (golint)
    • Line 118: warning: exported type PluginEntryPoint should have comment or be unexported (golint)
    • Line 121: warning: exported const RISK_INVASIVE should have comment (or a comment on this block) or be unexported (golint)
    • Line 127: warning: exported const PARAM_POSITION_BODY should have comment (or a comment on this block) or be unexported (golint)
    • Line 133: warning: exported const CONFIDENCE_CERTAIN should have comment (or a comment on this block) or be unexported (golint)
    • Line 139: warning: exported const CRITICAL should have comment (or a comment on this block) or be unexported (golint)
    • Line 146: warning: don't use underscores in Go names; var confidence_text should be confidenceText (golint)
    • Line 148: warning: don't use underscores in Go names; var severty_text should be severtyText (golint)
    • Line 150: warning: exported type ScannerPlugin should have comment or be unexported (golint)
    • Line 157: warning: exported type Parameter should have comment or be unexported (golint)
    • Line 159: warning: exported type TestResult should have comment or be unexported (golint)
    • Line 165: warning: don't use underscores in Go names; struct field request_response should be requestResponse (golint)
    • Line 173: warning: don't use underscores in Go names; var fuzz_menu_is_fuzz should be fuzzMenuIsFuzz (golint)
    • gowpt/src/print.go
    • Line 12: warning: exported type Color should have comment or be unexported (golint)
    • Line 19: warning: don't use underscores in Go names; var r_start should be rStart (golint)
    • Line 50: warning: don't use underscores in Go names; var arg_index should be argIndex (golint)
    • Line 55: warning: don't use underscores in Go names; var arg_count should be argCount (golint)
    • Line 60: warning: don't use underscores in Go names; var arg_index should be argIndex (golint)
    • Line 99: warning: don't use underscores in Go names; var y_index should be yIndex (golint)
    • Line 139: warning: don't use underscores in Go names; func parameter r_pos should be rPos (golint)
    • Line 174: warning: don't use underscores in Go names; var how_many should be howMany (golint)
    • Line 187: warning: don't use underscores in Go names; func parameter r_pos should be rPos (golint)
    • Line 248: warning: don't use underscores in Go names; var how_many should be howMany (golint)
    • Line 261: warning: don't use underscores in Go names; func parameter req_res should be reqRes (golint)
    • Line 261: warning: don't use underscores in Go names; func parameter r_pos should be rPos (golint)
    • Line 282: warning: don't use underscores in Go names; var r_start should be rStart (golint)
    • Line 291: warning: don't use underscores in Go names; var how_many should be howMany (golint)
    • Line 317: warning: don't use underscores in Go names; func parameter goto_r should be gotoR (golint)
    • gowpt/src/scanengine.go
    • Line 17: warning: don't use underscores in Go names; func parameter base_request should be baseRequest (golint)
    • Line 65: warning: don't use underscores in Go names; func parameter base_request should be baseRequest (golint)
    • Line 87: warning: don't use underscores in Go names; func parameter base_request should be baseRequest (golint)
    • gowpt/src/scanextender.go
    • Line 32: warning: don't use underscores in Go names; var plugin_callback should be pluginCallback (golint)
    • Line 47: warning: don't use underscores in Go names; func parameter plugin_name should be pluginName (golint)
    • Line 92: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 137: warning: don't use underscores in Go names; var old_param should be oldParam (golint)
    • Line 140: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 162: warning: don't use underscores in Go names; var new_param should be newParam (golint)
    • Line 163: warning: don't use underscores in Go names; var new_param_i should be newParamI (golint)
    • Line 164: warning: don't use underscores in Go names; var new_parameter should be newParameter (golint)
    • Line 168: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 218: warning: don't use underscores in Go names; var offset_start should be offsetStart (golint)
    • Line 219: warning: don't use underscores in Go names; var offset_end should be offsetEnd (golint)
    • Line 255: warning: don't use underscores in Go names; var tmp_req should be tmpReq (golint)
    • Line 258: warning: don't use underscores in Go names; var full_url should be fullURL (golint)
    • Line 264: warning: don't use underscores in Go names; var full_url_parsed should be fullURLParsed (golint)
    • Line 273: warning: exported function Match should have comment or be unexported (golint)
    • Line 276: 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 331: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 407: warning: don't use underscores in Go names; var tmp_req should be tmpReq (golint)
    • Line 410: warning: don't use underscores in Go names; var full_url should be fullURL (golint)
    • Line 416: warning: don't use underscores in Go names; var full_url_parsed should be fullURLParsed (golint)
    • Line 442: warning: don't use underscores in Go names; range var plugin_path should be pluginPath (golint)
    • gowpt/src/config.go
    • Line 50: warning: exported function NonProxyHandler should have comment or be unexported (golint)
    • Line 90: warning: exported function ListenAndServeWithClose should have comment or be unexported (golint)
    • Line 146: warning: don't use underscores in Go names; var proxy_url should be proxyURL (golint)
    • Line 182: warning: don't use underscores in Go names; var have_keyword should be haveKeyword (golint)
    • Line 312: warning: don't use underscores in Go names; var tmp_req should be tmpReq (golint)
    • Line 315: warning: don't use underscores in Go names; var full_url should be fullURL (golint)
    • Line 321: warning: don't use underscores in Go names; var full_url_parsed should be fullURLParsed (golint)
    • gowpt/src/extender.go
    • Line 50: warning: don't use underscores in Go names; var method_str should be methodStr (golint)
    • Line 50: warning: don't use underscores in Go names; var m_err should be mErr (golint)
    • Line 51: warning: don't use underscores in Go names; var url_str should be urlStr (golint)
    • Line 51: warning: don't use underscores in Go names; var u_err should be uErr (golint)
    • Line 52: warning: don't use underscores in Go names; var post_str should be postStr (golint)
    • Line 52: warning: don't use underscores in Go names; var p_err should be pErr (golint)
    • Line 59: warning: don't use underscores in Go names; var tmp_url should be tmpURL (golint)
    • Line 59: warning: don't use underscores in Go names; var url_err should be urlErr (golint)
    • Line 60: warning: don't use underscores in Go names; var tmp_post should be tmpPost (golint)
    • Line 60: warning: don't use underscores in Go names; var post_err should be postErr (golint)
    • Line 61: warning: don't use underscores in Go names; var tmp_req should be tmpReq (golint)
    • Line 61: warning: don't use underscores in Go names; var req_err should be reqErr (golint)
    • Line 69: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • gowpt/src/filter.go
    • Line 49: warning: don't use underscores in Go names; var tmp_filter_index should be tmpFilterIndex (golint)
    • Line 67: warning: exported function RegSplit should have comment or be unexported (golint)
    • Line 83: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • gowpt/src/fuzzer.go
    • Line 120: warning: don't use underscores in Go names; func parameter flip_size should be flipSize (golint)
    • Line 120: warning: don't use underscores in Go names; func parameter op_size should be opSize (golint)
    • Line 145: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 150: warning: don't use underscores in Go names; func parameter op_size should be opSize (golint)
    • Line 156: warning: don't use underscores in Go names; var flip_size should be flipSize (golint)
    • Line 179: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 184: warning: don't use underscores in Go names; func parameter op_size should be opSize (golint)
    • Line 212: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 217: warning: don't use underscores in Go names; func parameter op_size should be opSize (golint)
    • Line 243: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 248: warning: don't use underscores in Go names; func parameter op_size should be opSize (golint)
    • Line 266: warning: don't use underscores in Go names; var max_t should be maxT (golint)
    • Line 274: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 279: warning: don't use underscores in Go names; func parameter op_size should be opSize (golint)
    • Line 287: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 292: warning: don't use underscores in Go names; func parameter op_size should be opSize (golint)
    • Line 298: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 303: warning: don't use underscores in Go names; func parameter op_size should be opSize (golint)
    • Line 326: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 374: warning: don't use underscores in Go names; func parameter op_size should be opSize (golint)
    • Line 398: warning: don't use underscores in Go names; var lsb_left should be lsbLeft (golint)
    • Line 399: warning: don't use underscores in Go names; var lsb_right should be lsbRight (golint)
    • Line 404: warning: don't use underscores in Go names; var next_byte should be nextByte (golint)
    • Line 411: warning: don't use underscores in Go names; var next_byte_a should be nextByteA (golint)
    • Line 412: warning: don't use underscores in Go names; var next_byte_b should be nextByteB (golint)
    • Line 413: warning: don't use underscores in Go names; var next_byte_c should be nextByteC (golint)
    • Line 422: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 437: warning: don't use underscores in Go names; var random_size should be randomSize (golint)
    • Line 439: warning: don't use underscores in Go names; var fuzzing_flip should be fuzzingFlip (golint)
    • Line 440: warning: don't use underscores in Go names; var fuzzing_size should be fuzzingSize (golint)
    • Line 441: warning: don't use underscores in Go names; var data_size should be dataSize (golint)
    • Line 445: warning: don't use underscores in Go names; var valid_sizes should be validSizes (golint)
    • Line 446: warning: don't use underscores in Go names; var valid_flips should be validFlips (golint)
    • Line 447: warning: don't use underscores in Go names; var max_iterate should be maxIterate (golint)
    • gowpt/src/utils.go
    • Line 30: warning: exported type Callback should have comment or be unexported (golint)
    • Line 62: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 102: warning: don't use underscores in Go names; var s_req should be sReq (golint)
    • Line 103: warning: don't use underscores in Go names; var s_res should be sRes (golint)

license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


ineffassign40%

IneffAssign detects ineffectual assignments in Go code.

    • gowpt/src/extender.go
    • Line 10: warning: cannot find package "." in: (ineffassign)
    • Line 10: warning: could not import github.com/robertkrimen/otto (invalid package name: "") (ineffassign)
    • Line 24: warning: v declared but not used (ineffassign)
    • gowpt/src/infomenu.go
    • Line 7: warning: undeclared name: termbox (ineffassign)
    • Line 9: warning: undeclared name: termbox (ineffassign)
    • Line 11: warning: undeclared name: termbox (ineffassign)
    • Line 13: warning: undeclared name: termbox (ineffassign)
    • Line 13: warning: undeclared name: termbox (ineffassign)
    • Line 13: warning: undeclared name: termbox (ineffassign)
    • Line 18: warning: undeclared name: termbox (ineffassign)
    • Line 27: warning: undeclared name: termbox (ineffassign)
    • Line 27: warning: undeclared name: termbox (ineffassign)
    • Line 27: warning: undeclared name: termbox (ineffassign)
    • Line 30: warning: undeclared name: termbox (ineffassign)
    • Line 30: warning: undeclared name: termbox (ineffassign)
    • Line 40: warning: undeclared name: termbox (ineffassign)
    • Line 40: warning: undeclared name: termbox (ineffassign)
    • Line 42: warning: undeclared name: termbox (ineffassign)
    • Line 66: warning: undeclared name: termbox (ineffassign)
    • Line 4: warning: "github.com/nsf/termbox-go" imported but not used (ineffassign)
    • gowpt/src/gowpt.go
    • Line 42: warning: undeclared name: termbox (ineffassign)
    • Line 46: warning: undeclared name: termbox (ineffassign)
    • Line 47: warning: undeclared name: termbox (ineffassign)
    • Line 47: warning: undeclared name: termbox (ineffassign)
    • Line 48: warning: undeclared name: termbox (ineffassign)
    • Line 48: warning: undeclared name: termbox (ineffassign)
    • Line 52: warning: undeclared name: termbox (ineffassign)
    • Line 56: warning: undeclared name: termbox (ineffassign)
    • Line 57: warning: undeclared name: termbox (ineffassign)
    • Line 57: warning: undeclared name: termbox (ineffassign)
    • Line 58: warning: undeclared name: termbox (ineffassign)
    • Line 58: warning: undeclared name: termbox (ineffassign)
    • Line 6: warning: "github.com/nsf/termbox-go" imported but not used (ineffassign)
    • gowpt/src/utils.go
    • Line 15: warning: undeclared name: termbox (ineffassign)
    • Line 23: warning: undeclared name: termbox (ineffassign)
    • Line 23: warning: undeclared name: termbox (ineffassign)
    • Line 23: warning: undeclared name: termbox (ineffassign)
    • Line 24: warning: undeclared name: termbox (ineffassign)
    • Line 11: warning: "github.com/nsf/termbox-go" imported but not used (ineffassign)
    • gowpt/src/config.go
    • Line 16: warning: cannot find package "." in: (ineffassign)
    • Line 16: warning: could not import github.com/elazarl/goproxy (invalid package name: "") (ineffassign)
    • gowpt/src/fuzzmenu.go
    • Line 9: warning: cannot find package "." in: (ineffassign)
    • Line 9: warning: could not import github.com/nsf/termbox-go (invalid package name: "") (ineffassign)
    • Line 97: warning: undeclared name: termbox (ineffassign)
    • Line 99: warning: undeclared name: termbox (ineffassign)
    • Line 101: warning: undeclared name: termbox (ineffassign)
    • Line 103: warning: undeclared name: termbox (ineffassign)
    • Line 103: warning: undeclared name: termbox (ineffassign)
    • Line 103: warning: undeclared name: termbox (ineffassign)
    • Line 106: warning: undeclared name: termbox (ineffassign)
    • Line 109: warning: undeclared name: termbox (ineffassign)
    • Line 109: warning: undeclared name: termbox (ineffassign)
    • Line 109: warning: undeclared name: termbox (ineffassign)
    • Line 111: warning: undeclared name: termbox (ineffassign)
    • Line 112: warning: undeclared name: termbox (ineffassign)
    • Line 113: warning: undeclared name: termbox (ineffassign)
    • Line 113: warning: undeclared name: termbox (ineffassign)
    • Line 113: warning: undeclared name: termbox (ineffassign)
    • Line 115: warning: undeclared name: termbox (ineffassign)
    • Line 117: warning: undeclared name: termbox (ineffassign)
    • Line 117: warning: undeclared name: termbox (ineffassign)
    • Line 117: warning: undeclared name: termbox (ineffassign)
    • Line 119: warning: undeclared name: termbox (ineffassign)
    • Line 125: warning: undeclared name: termbox (ineffassign)
    • Line 125: warning: undeclared name: termbox (ineffassign)
    • Line 125: warning: undeclared name: termbox (ineffassign)
    • Line 140: warning: undeclared name: termbox (ineffassign)
    • Line 140: warning: undeclared name: termbox (ineffassign)
    • Line 142: warning: undeclared name: termbox (ineffassign)
    • Line 247: warning: undeclared name: termbox (ineffassign)
    • Line 298: warning: undeclared name: termbox (ineffassign)
    • Line 298: warning: undeclared name: termbox (ineffassign)
    • Line 301: warning: undeclared name: termbox (ineffassign)
    • Line 307: warning: undeclared name: termbox (ineffassign)
    • Line 330: warning: undeclared name: termbox (ineffassign)
    • Line 330: warning: undeclared name: termbox (ineffassign)
    • Line 337: warning: undeclared name: termbox (ineffassign)
    • Line 380: warning: undeclared name: termbox (ineffassign)
    • Line 411: warning: undeclared name: termbox (ineffassign)
    • Line 425: warning: undeclared name: termbox (ineffassign)
    • Line 426: warning: undeclared name: termbox (ineffassign)
    • Line 442: warning: undeclared name: termbox (ineffassign)
    • Line 443: warning: undeclared name: termbox (ineffassign)
    • Line 462: warning: undeclared name: termbox (ineffassign)
    • Line 470: warning: undeclared name: termbox (ineffassign)
    • Line 473: warning: undeclared name: termbox (ineffassign)
    • Line 476: warning: undeclared name: termbox (ineffassign)
    • Line 485: warning: undeclared name: termbox (ineffassign)
    • Line 488: warning: undeclared name: termbox (ineffassign)
    • Line 9: warning: "github.com/nsf/termbox-go" imported but not used (ineffassign)
    • gowpt/src/print.go
    • Line 13: warning: undeclared name: termbox (ineffassign)
    • Line 14: warning: undeclared name: termbox (ineffassign)
    • Line 33: warning: undeclared name: termbox (ineffassign)
    • Line 41: warning: undeclared name: termbox (ineffassign)
    • Line 49: warning: undeclared name: termbox (ineffassign)
    • Line 70: warning: undeclared name: termbox (ineffassign)
    • Line 75: warning: undeclared name: termbox (ineffassign)
    • Line 81: warning: undeclared name: termbox (ineffassign)
    • Line 89: warning: undeclared name: termbox (ineffassign)
    • Line 95: warning: undeclared name: termbox (ineffassign)
    • Line 22: warning: undeclared name: termbox (ineffassign)
    • Line 22: warning: undeclared name: termbox (ineffassign)
    • Line 23: warning: undeclared name: termbox (ineffassign)
    • Line 23: warning: undeclared name: termbox (ineffassign)
    • Line 24: warning: undeclared name: termbox (ineffassign)
    • Line 24: warning: undeclared name: termbox (ineffassign)
    • Line 25: warning: undeclared name: termbox (ineffassign)
    • Line 25: warning: undeclared name: termbox (ineffassign)
    • Line 26: warning: undeclared name: termbox (ineffassign)
    • Line 26: warning: undeclared name: termbox (ineffassign)
    • Line 27: warning: undeclared name: termbox (ineffassign)
    • Line 27: warning: undeclared name: termbox (ineffassign)
    • Line 28: warning: undeclared name: termbox (ineffassign)
    • Line 28: warning: undeclared name: termbox (ineffassign)
    • Line 29: warning: undeclared name: termbox (ineffassign)
    • Line 29: warning: undeclared name: termbox (ineffassign)
    • Line 30: warning: undeclared name: termbox (ineffassign)
    • Line 30: warning: undeclared name: termbox (ineffassign)
    • Line 35: warning: undeclared name: termbox (ineffassign)
    • Line 76: warning: undeclared name: termbox (ineffassign)
    • Line 83: warning: undeclared name: termbox (ineffassign)
    • Line 90: warning: undeclared name: termbox (ineffassign)
    • Line 96: warning: undeclared name: termbox (ineffassign)
    • Line 107: warning: undeclared name: termbox (ineffassign)
    • Line 109: warning: undeclared name: termbox (ineffassign)
    • Line 109: warning: undeclared name: termbox (ineffassign)
    • Line 116: warning: undeclared name: termbox (ineffassign)
    • Line 118: warning: undeclared name: termbox (ineffassign)
    • Line 118: warning: undeclared name: termbox (ineffassign)
    • Line 123: warning: undeclared name: termbox (ineffassign)
    • Line 128: warning: undeclared name: termbox (ineffassign)
    • Line 129: warning: undeclared name: termbox (ineffassign)
    • Line 130: warning: undeclared name: termbox (ineffassign)
    • Line 131: warning: undeclared name: termbox (ineffassign)
    • Line 135: warning: undeclared name: termbox (ineffassign)
    • Line 136: warning: undeclared name: termbox (ineffassign)
    • Line 136: warning: undeclared name: termbox (ineffassign)
    • Line 140: warning: undeclared name: termbox (ineffassign)
    • Line 141: warning: undeclared name: termbox (ineffassign)
    • Line 141: warning: undeclared name: termbox (ineffassign)
    • Line 141: warning: undeclared name: termbox (ineffassign)
    • Line 142: warning: undeclared name: termbox (ineffassign)
    • Line 179: warning: undeclared name: termbox (ineffassign)
    • Line 181: warning: undeclared name: termbox (ineffassign)
    • Line 188: warning: undeclared name: termbox (ineffassign)
    • Line 189: warning: undeclared name: termbox (ineffassign)
    • Line 189: warning: undeclared name: termbox (ineffassign)
    • Line 189: warning: undeclared name: termbox (ineffassign)
    • Line 192: warning: undeclared name: termbox (ineffassign)
    • Line 194: warning: undeclared name: termbox (ineffassign)
    • Line 196: warning: undeclared name: termbox (ineffassign)
    • Line 198: warning: undeclared name: termbox (ineffassign)
    • Line 200: warning: undeclared name: termbox (ineffassign)
    • Line 202: warning: undeclared name: termbox (ineffassign)
    • Line 204: warning: undeclared name: termbox (ineffassign)
    • Line 206: warning: undeclared name: termbox (ineffassign)
    • Line 208: warning: undeclared name: termbox (ineffassign)
    • Line 210: warning: undeclared name: termbox (ineffassign)
    • Line 212: warning: undeclared name: termbox (ineffassign)
    • Line 214: warning: undeclared name: termbox (ineffassign)
    • Line 253: warning: undeclared name: termbox (ineffassign)
    • Line 255: warning: undeclared name: termbox (ineffassign)
    • Line 262: warning: undeclared name: termbox (ineffassign)
    • Line 296: warning: undeclared name: termbox (ineffassign)
    • Line 298: warning: undeclared name: termbox (ineffassign)
    • Line 305: warning: undeclared name: termbox (ineffassign)
    • Line 306: warning: undeclared name: termbox (ineffassign)
    • Line 307: warning: undeclared name: termbox (ineffassign)
    • Line 308: warning: undeclared name: termbox (ineffassign)
    • Line 310: warning: undeclared name: termbox (ineffassign)
    • Line 311: warning: undeclared name: termbox (ineffassign)
    • Line 318: warning: undeclared name: termbox (ineffassign)
    • Line 319: warning: undeclared name: termbox (ineffassign)
    • Line 320: warning: undeclared name: termbox (ineffassign)
    • Line 321: warning: undeclared name: termbox (ineffassign)
    • Line 323: warning: undeclared name: termbox (ineffassign)
    • Line 324: warning: undeclared name: termbox (ineffassign)
    • Line 9: warning: "github.com/nsf/termbox-go" imported but not used (ineffassign)
    • gowpt/src/engine.go
    • Line 20: warning: cannot find package "." in: (ineffassign)
    • Line 20: warning: could not import golang.org/x/net/html (invalid package name: "") (ineffassign)
    • gowpt/src/mainmenu.go
    • Line 7: warning: undeclared name: termbox (ineffassign)
    • Line 9: warning: undeclared name: termbox (ineffassign)
    • Line 11: warning: undeclared name: termbox (ineffassign)
    • Line 13: warning: undeclared name: termbox (ineffassign)
    • Line 13: warning: undeclared name: termbox (ineffassign)
    • Line 13: warning: undeclared name: termbox (ineffassign)
    • Line 16: warning: undeclared name: termbox (ineffassign)
    • Line 18: warning: undeclared name: termbox (ineffassign)
    • Line 26: warning: undeclared name: termbox (ineffassign)
    • Line 26: warning: undeclared name: termbox (ineffassign)
    • Line 26: warning: undeclared name: termbox (ineffassign)
    • Line 28: warning: undeclared name: termbox (ineffassign)
    • Line 30: warning: undeclared name: termbox (ineffassign)
    • Line 31: warning: undeclared name: termbox (ineffassign)
    • Line 32: warning: undeclared name: termbox (ineffassign)
    • Line 33: warning: undeclared name: termbox (ineffassign)
    • Line 34: warning: undeclared name: termbox (ineffassign)
    • Line 35: warning: undeclared name: termbox (ineffassign)
    • Line 36: warning: undeclared name: termbox (ineffassign)
    • Line 37: warning: undeclared name: termbox (ineffassign)
    • Line 38: warning: undeclared name: termbox (ineffassign)
    • Line 39: warning: undeclared name: termbox (ineffassign)
    • Line 43: warning: undeclared name: termbox (ineffassign)
    • Line 43: warning: undeclared name: termbox (ineffassign)
    • Line 45: warning: undeclared name: termbox (ineffassign)
    • Line 79: warning: undeclared name: termbox (ineffassign)
    • Line 4: warning: "github.com/nsf/termbox-go" imported but not used (ineffassign)

misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!