├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DISPLAY.gif ├── Godeps └── Readme ├── LICENSE ├── README.md ├── doc ├── README_zh-cn.md ├── copycode.jpeg ├── cyclo.jpeg ├── dependgraph.jpeg ├── github-com-wgliang-goreporter-logcool.png ├── simplecode.jpeg ├── summary.jpeg ├── unittest_cover.jpeg └── unittest_time.jpeg ├── engine ├── config.go ├── const.go ├── engine_test.go ├── processbar │ ├── processbar.go │ └── processbar_test.go ├── report2html.go ├── report2html_test.go ├── reporter.go ├── strategy.go ├── strategy_copycheck.go ├── strategy_countcode.go ├── strategy_cyclo.go ├── strategy_deadcode.go ├── strategy_dependgraph.go ├── strategy_depth.go ├── strategy_gofmt.go ├── strategy_golint.go ├── strategy_govet.go ├── strategy_importpackages.go ├── strategy_interfacer.go ├── strategy_simplecode.go ├── strategy_spellcheck.go ├── strategy_unittest.go └── template.html.go ├── go.test.sh ├── linters ├── aligncheck │ ├── aligncheck.go │ └── aligncheck_test.go ├── copycheck │ ├── copycheck.go │ ├── copycheck_test.go │ ├── job │ │ ├── buildtree.go │ │ └── parse.go │ ├── output │ │ ├── html.go │ │ ├── output_test.go │ │ ├── plumbing.go │ │ └── text.go │ ├── suffixtree │ │ ├── dupl.go │ │ ├── dupl_test.go │ │ ├── suffixtree.go │ │ └── suffixtree_test.go │ └── syntax │ │ ├── golang │ │ └── golang.go │ │ ├── syntax.go │ │ └── syntax_test.go ├── countcode │ ├── countcode.go │ └── countcode_test.go ├── cyclo │ ├── README.md │ ├── cyclo.go │ └── cyclo_test.go ├── deadcode │ ├── deadcode.go │ ├── deadcode_test.go │ └── testdata │ │ ├── p1 │ │ └── sample.go │ │ ├── p2 │ │ └── sample.go │ │ └── p3 │ │ ├── sample.go │ │ └── sample_test.go ├── depend │ ├── depend.go │ └── depend_test.go ├── depth │ ├── README.md │ ├── godepth.go │ └── godepth_test.go ├── errorcheck │ ├── errorcheck.go │ ├── errorcheck_test.go │ └── test │ │ ├── test.go │ │ └── test2.go ├── flen │ ├── README.md │ ├── flen.go │ └── flen_test.go ├── gofmt │ ├── gofmt.go │ └── gofmt_test.go ├── golint │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── golint │ │ ├── golint.go │ │ └── import.go │ ├── import.go │ ├── lint.go │ ├── lint_test.go │ ├── linter.go │ ├── linter_test.go │ ├── misc │ │ ├── emacs │ │ │ └── golint.el │ │ └── vim │ │ │ └── ftplugin │ │ │ └── go │ │ │ └── lint.vim │ └── testdata │ │ ├── 4.go │ │ ├── 5_test.go │ │ ├── blank-import-lib.go │ │ ├── blank-import-lib_test.go │ │ ├── blank-import-main.go │ │ ├── broken.go │ │ ├── common-methods.go │ │ ├── const-block.go │ │ ├── context.go │ │ ├── contextkeytypes.go │ │ ├── else-multi.go │ │ ├── else.go │ │ ├── error-return.go │ │ ├── errorf.go │ │ ├── errors.go │ │ ├── import-dot.go │ │ ├── inc.go │ │ ├── names.go │ │ ├── pkg-doc1.go │ │ ├── pkg-doc2.go │ │ ├── pkg-doc3.go │ │ ├── pkg-doc4.go │ │ ├── pkg-doc5.go │ │ ├── pkg-main.go │ │ ├── range.go │ │ ├── receiver-names.go │ │ ├── sort.go │ │ ├── stutter.go │ │ ├── time.go │ │ ├── unexp-return.go │ │ └── var-decl.go ├── govet │ ├── govet.go │ └── govet_test.go ├── interfacer │ ├── LICENSE │ ├── README.md │ ├── cache.go │ ├── check.go │ ├── interfacer.go │ ├── interfacer_test.go │ ├── testdata │ │ ├── files │ │ │ ├── alias.go │ │ │ ├── assign.go │ │ │ ├── block.go │ │ │ ├── compare.go │ │ │ ├── composite.go │ │ │ ├── const.go │ │ │ ├── convert.go │ │ │ ├── dereference.go │ │ │ ├── fields.go │ │ │ ├── global_call.go │ │ │ ├── implement.go │ │ │ ├── import.go │ │ │ ├── issue22.go │ │ │ ├── lit_types.go │ │ │ ├── nested_func.go │ │ │ ├── noniface_usage.go │ │ │ ├── noninteresting.go │ │ │ ├── own_iface.go │ │ │ ├── param_groups.go │ │ │ ├── params.go │ │ │ ├── readme.go │ │ │ ├── recursive.go │ │ │ ├── repeated_types.go │ │ │ ├── results.go │ │ │ ├── shadow.go │ │ │ ├── simple.go │ │ │ ├── skip_call.go │ │ │ ├── unexported.go │ │ │ ├── unexported_byvalue.go │ │ │ ├── unusual_types.go │ │ │ ├── used.go │ │ │ ├── used_func.go │ │ │ └── wanted_type.go │ │ ├── local │ │ │ ├── multipkg │ │ │ │ ├── pkg2 │ │ │ │ │ └── simple.go │ │ │ │ └── simple.go │ │ │ └── single │ │ │ │ ├── simple.go │ │ │ │ └── struct.go │ │ └── src │ │ │ ├── deps │ │ │ ├── import.go │ │ │ ├── import15.go │ │ │ ├── single.go │ │ │ └── vendor │ │ │ │ └── foo │ │ │ │ └── bar │ │ │ │ └── def.go │ │ │ ├── grab-import │ │ │ ├── def │ │ │ │ ├── def.go │ │ │ │ └── nested │ │ │ │ │ └── def.go │ │ │ └── use.go │ │ │ ├── nested │ │ │ └── pkg │ │ │ │ └── simple.go │ │ │ ├── single │ │ │ ├── simple.go │ │ │ └── struct.go │ │ │ └── skip │ │ │ ├── .hidden │ │ │ └── simple.go │ │ │ ├── simple.go │ │ │ ├── testdata │ │ │ └── simple.go │ │ │ └── vendor │ │ │ └── simple.go │ └── types.go ├── simplecode │ ├── gosimple.go │ ├── gosimple_test.go │ ├── gotool │ │ ├── go13.go │ │ ├── go14-15.go │ │ ├── go16.go │ │ ├── match.go │ │ ├── match_test.go │ │ └── tool.go │ ├── lint │ │ ├── lint.go │ │ ├── lint16.go │ │ ├── lint_test.go │ │ ├── lintutil │ │ │ └── util.go │ │ └── testutil │ │ │ └── util.go │ ├── simple │ │ ├── lint.go │ │ ├── lint17.go │ │ ├── lint18.go │ │ └── lint_test.go │ └── testdata │ │ ├── LimeTimeUntil_go17.go │ │ ├── LimeTimeUntil_go18.go │ │ ├── LintAssertNotNil.go │ │ ├── LintBlankOK.go │ │ ├── LintDeclareAssign.go │ │ ├── LintLoopSlide.go │ │ ├── LintMakeLenCap.go │ │ ├── LintRedundantBreak.go │ │ ├── LintRedundantSprintf.go │ │ ├── LintStringCopy.go │ │ ├── bool-cmp.go │ │ ├── compare.go │ │ ├── contains.go │ │ ├── convert.go │ │ ├── copy.go │ │ ├── for-true.go │ │ ├── format-int.go │ │ ├── generated.go │ │ ├── if-return.go │ │ ├── if-simpler-return.go │ │ ├── loop-append.go │ │ ├── nil-len.go │ │ ├── range.go │ │ ├── receive-blank.go │ │ ├── regexp-raw.go │ │ ├── single-case-select.go │ │ ├── slicing.go │ │ ├── time-since.go │ │ └── trim.go ├── simpler │ ├── CONTRIBUTING.md │ ├── internal │ │ └── sharedcheck │ │ │ └── lint.go │ ├── lint.go │ ├── lint │ │ ├── LICENSE │ │ ├── lint.go │ │ ├── lintutil │ │ │ └── util.go │ │ └── testutil │ │ │ └── util.go │ ├── lint17.go │ ├── lint18.go │ ├── lint_test.go │ ├── simpler.go │ ├── simpler_test.go │ ├── ssa │ │ ├── LICENSE │ │ ├── blockopt.go │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── const.go │ │ ├── const15.go │ │ ├── create.go │ │ ├── doc.go │ │ ├── dom.go │ │ ├── emit.go │ │ ├── example_test.go │ │ ├── func.go │ │ ├── identical.go │ │ ├── identical_17.go │ │ ├── lift.go │ │ ├── lvalue.go │ │ ├── methods.go │ │ ├── mode.go │ │ ├── print.go │ │ ├── sanity.go │ │ ├── source.go │ │ ├── source_test.go │ │ ├── ssa.go │ │ ├── ssautil │ │ │ ├── load.go │ │ │ ├── load_test.go │ │ │ ├── switch.go │ │ │ ├── switch_test.go │ │ │ ├── testdata │ │ │ │ └── switches.go │ │ │ └── visit.go │ │ ├── stdlib_test.go │ │ ├── testdata │ │ │ ├── objlookup.go │ │ │ └── valueforexpr.go │ │ ├── testmain.go │ │ ├── testmain_test.go │ │ ├── util.go │ │ ├── wrappers.go │ │ └── write.go │ └── testdata │ │ ├── LimeTimeUntil_go17.go │ │ ├── LimeTimeUntil_go18.go │ │ ├── LintAssertNotNil.go │ │ ├── LintBlankOK.go │ │ ├── LintBytesBufferConversions.go │ │ ├── LintDeclareAssign.go │ │ ├── LintErrorsNewSprintf.go │ │ ├── LintLoopSlide.go │ │ ├── LintMakeLenCap.go │ │ ├── LintRangeStringRunes.go │ │ ├── LintRedundantBreak.go │ │ ├── LintRedundantReturn.go │ │ ├── LintRedundantSprintf.go │ │ ├── LintStringCopy.go │ │ ├── bool-cmp.go │ │ ├── compare.go │ │ ├── contains.go │ │ ├── convert.go │ │ ├── copy.go │ │ ├── for-true.go │ │ ├── format-int.go │ │ ├── generated.go │ │ ├── if-return.go │ │ ├── if-simpler-return.go │ │ ├── loop-append.go │ │ ├── nil-len.go │ │ ├── range.go │ │ ├── receive-blank.go │ │ ├── regexp-raw.go │ │ ├── single-case-select.go │ │ ├── slicing.go │ │ ├── time-since.go │ │ └── trim.go ├── spellcheck │ ├── misspell │ │ ├── .travis.yml │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── benchmark_test.go │ │ ├── case.go │ │ ├── case_test.go │ │ ├── falsepositives_test.go │ │ ├── mime.go │ │ ├── mime_test.go │ │ ├── notwords.go │ │ ├── notwords_test.go │ │ ├── precommit.sh │ │ ├── replace.go │ │ ├── replace_test.go │ │ ├── stringreplacer │ │ │ ├── LICENSE │ │ │ ├── replace.go │ │ │ └── replace_test.go │ │ ├── url.go │ │ ├── url_test.go │ │ └── words.go │ ├── spellcheck.go │ └── spellcheck_test.go ├── staticcheck │ ├── CONTRIBUTING.md │ ├── callgraph │ │ ├── callgraph.go │ │ ├── cha │ │ │ ├── cha.go │ │ │ ├── cha_test.go │ │ │ └── testdata │ │ │ │ ├── func.go │ │ │ │ ├── iface.go │ │ │ │ └── recv.go │ │ ├── rta │ │ │ ├── rta.go │ │ │ ├── rta_test.go │ │ │ └── testdata │ │ │ │ ├── func.go │ │ │ │ ├── iface.go │ │ │ │ └── rtype.go │ │ ├── static │ │ │ ├── static.go │ │ │ └── static_test.go │ │ └── util.go │ ├── functions │ │ ├── concrete.go │ │ ├── functions.go │ │ ├── loops.go │ │ ├── pure.go │ │ └── terminates.go │ ├── gcsizes │ │ ├── LICENSE │ │ └── sizes.go │ ├── internal │ │ └── sharedcheck │ │ │ └── lint.go │ ├── lint.go │ ├── lint_test.go │ ├── rules.go │ ├── staticcheck.go │ ├── staticcheck_test.go │ ├── testdata │ │ ├── CheckBenchmarkN.go │ │ ├── CheckBytesEqualIP.go │ │ ├── CheckCanonicalHeaderKey.go │ │ ├── CheckConcurrentTesting.go │ │ ├── CheckCyclicFinalizer.go │ │ ├── CheckDeferInInfiniteLoop.go │ │ ├── CheckDeferLock.go │ │ ├── CheckDeprecated.go │ │ ├── CheckDiffSizeComparison.go │ │ ├── CheckDoubleNegation.go │ │ ├── CheckDubiousDeferInChannelRangeLoop.go │ │ ├── CheckDubiousSyncPoolSize.go │ │ ├── CheckEarlyDefer.go │ │ ├── CheckEmptyBranch.go │ │ ├── CheckEmptyBranch_test.go │ │ ├── CheckEmptyCriticalSection.go │ │ ├── CheckEncodingBinary.go │ │ ├── CheckEncodingBinary_go17.go │ │ ├── CheckEncodingBinary_go18.go │ │ ├── CheckExec.go │ │ ├── CheckFlagUsage.go │ │ ├── CheckIneffecitiveFieldAssignments.go │ │ ├── CheckIneffectiveAppend.go │ │ ├── CheckIneffectiveCopy.go │ │ ├── CheckIneffectiveLoop.go │ │ ├── CheckInfiniteEmptyLoop.go │ │ ├── CheckInfiniteRecursion.go │ │ ├── CheckLeakyTimeTick-main.go │ │ ├── CheckLeakyTimeTick.go │ │ ├── CheckLhsRhsIdentical.go │ │ ├── CheckListenAddress.go │ │ ├── CheckLoopCondition.go │ │ ├── CheckLoopEmptyDefault.go │ │ ├── CheckMathInt.go │ │ ├── CheckNaNComparison.go │ │ ├── CheckNilMaps.go │ │ ├── CheckNonOctalFileMode.go │ │ ├── CheckNonUniqueCutset.go │ │ ├── CheckPredeterminedBooleanExprs.go.disabled │ │ ├── CheckPureFunctions.go │ │ ├── CheckPureFunctions_test.go │ │ ├── CheckRangeStringRunes.go │ │ ├── CheckRegexpMatchLoop.go │ │ ├── CheckRegexps.go │ │ ├── CheckRepeatedIfElse.go │ │ ├── CheckScopedBreak.go │ │ ├── CheckSillyBitwiseOps.go │ │ ├── CheckSliceOutOfBounds.go.disabled │ │ ├── CheckStringsReplaceZero.go6 │ │ ├── CheckTemplate.go │ │ ├── CheckTestMainExit-1.go │ │ ├── CheckTestMainExit-2.go │ │ ├── CheckTestMainExit-3.go │ │ ├── CheckTestMainExit-4.go │ │ ├── CheckTestMainExit-5.go │ │ ├── CheckTimeParse.go │ │ ├── CheckTimeSleepConstant.go │ │ ├── CheckURLs.go │ │ ├── CheckUnbufferedSignalChan.go │ │ ├── CheckUnmarshalPointer.go │ │ ├── CheckUnreadVariableValues.go │ │ ├── CheckUnreadVariableValues_test.go │ │ ├── CheckUnsafePrintf.go │ │ ├── CheckUnsignedComparison.go │ │ ├── CheckUntrappableSignal.go │ │ ├── CheckWaitgroupAdd.go │ │ ├── CheckWriterBufferModified.go │ │ ├── checkStdlibUsageNilContext.go │ │ ├── checkStdlibUsageRegexpFindAll.go │ │ ├── checkStdlibUsageSeeker.go │ │ ├── checkStdlibUsageUTF8Cutset.go │ │ ├── function-literals.go │ │ └── synthetic.go │ └── vrp │ │ ├── channel.go │ │ ├── int.go │ │ ├── slice.go │ │ ├── string.go │ │ └── vrp.go ├── structcheck │ ├── structcheck.go │ └── structcheck_test.go ├── unittest │ ├── unittest.go │ └── unittest_test.go └── varcheck │ ├── varcheck.go │ └── varcheck_test.go ├── logo.png ├── main.go ├── templates ├── template-v1.html ├── template-v2.html └── template.html ├── utils ├── utils.go └── utils_test.go └── vendor ├── github.com ├── facebookgo │ ├── inject │ │ ├── .travis.yml │ │ ├── inject.go │ │ ├── license │ │ ├── patents │ │ └── readme.md │ └── structtag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── license │ │ ├── readme.md │ │ └── structtag.go ├── fatih │ └── color │ │ ├── .travis.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── color.go │ │ └── doc.go ├── golang │ └── glog │ │ ├── LICENSE │ │ ├── README │ │ ├── glog.go │ │ └── glog_file.go ├── json-iterator │ └── go │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build.sh │ │ ├── feature_adapter.go │ │ ├── feature_any.go │ │ ├── feature_any_array.go │ │ ├── feature_any_bool.go │ │ ├── feature_any_float.go │ │ ├── feature_any_int32.go │ │ ├── feature_any_int64.go │ │ ├── feature_any_invalid.go │ │ ├── feature_any_nil.go │ │ ├── feature_any_number.go │ │ ├── feature_any_object.go │ │ ├── feature_any_string.go │ │ ├── feature_any_uint32.go │ │ ├── feature_any_uint64.go │ │ ├── feature_config.go │ │ ├── feature_iter.go │ │ ├── feature_iter_array.go │ │ ├── feature_iter_float.go │ │ ├── feature_iter_int.go │ │ ├── feature_iter_object.go │ │ ├── feature_iter_skip.go │ │ ├── feature_iter_skip_sloppy.go │ │ ├── feature_iter_skip_strict.go │ │ ├── feature_iter_string.go │ │ ├── feature_json_number.go │ │ ├── feature_pool.go │ │ ├── feature_reflect.go │ │ ├── feature_reflect_array.go │ │ ├── feature_reflect_extension.go │ │ ├── feature_reflect_map.go │ │ ├── feature_reflect_native.go │ │ ├── feature_reflect_object.go │ │ ├── feature_reflect_slice.go │ │ ├── feature_reflect_struct_decoder.go │ │ ├── feature_stream.go │ │ ├── feature_stream_float.go │ │ ├── feature_stream_int.go │ │ ├── feature_stream_string.go │ │ ├── fuzzy_mode_convert_table.md │ │ ├── jsoniter.go │ │ └── test.sh ├── kisielk │ └── gotool │ │ ├── .travis.yml │ │ ├── LEGAL │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go13.go │ │ ├── go14-15.go │ │ ├── go16-18.go │ │ ├── internal │ │ └── load │ │ │ ├── path.go │ │ │ ├── pkg.go │ │ │ └── search.go │ │ ├── match.go │ │ ├── match18.go │ │ └── tool.go ├── mattn │ ├── go-colorable │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── colorable_appengine.go │ │ ├── colorable_others.go │ │ ├── colorable_windows.go │ │ └── noncolorable.go │ └── go-isatty │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── isatty_appengine.go │ │ ├── isatty_bsd.go │ │ ├── isatty_linux.go │ │ ├── isatty_linux_ppc64x.go │ │ ├── isatty_others.go │ │ ├── isatty_solaris.go │ │ └── isatty_windows.go └── reconquest │ ├── barely │ ├── LICENSE │ ├── README.md │ └── barely.go │ └── loreley │ ├── README.md │ ├── demo.png │ ├── loreley.go │ ├── tabwriter-after.png │ └── tabwriter-before.png ├── golang.org └── x │ ├── crypto │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── ssh │ │ └── terminal │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── sys │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── file_unix.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── openbsd_pledge.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_no_getwd.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── timestruct.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_solaris_amd64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ └── windows │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_unset.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go │ └── tools │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ └── go │ ├── ast │ └── astutil │ │ ├── enclosing.go │ │ ├── imports.go │ │ ├── rewrite.go │ │ └── util.go │ ├── buildutil │ ├── allpackages.go │ ├── fakecontext.go │ ├── overlay.go │ ├── tags.go │ └── util.go │ ├── gcexportdata │ ├── gcexportdata.go │ ├── importer.go │ └── main.go │ ├── gcimporter15 │ ├── bexport.go │ ├── bimport.go │ ├── exportdata.go │ ├── gcimporter.go │ ├── isAlias18.go │ └── isAlias19.go │ ├── loader │ ├── cgo.go │ ├── cgo_pkgconfig.go │ ├── doc.go │ ├── loader.go │ └── util.go │ ├── ssa │ ├── blockopt.go │ ├── builder.go │ ├── const.go │ ├── create.go │ ├── doc.go │ ├── dom.go │ ├── emit.go │ ├── func.go │ ├── identical.go │ ├── identical_17.go │ ├── lift.go │ ├── lvalue.go │ ├── methods.go │ ├── mode.go │ ├── print.go │ ├── sanity.go │ ├── source.go │ ├── ssa.go │ ├── ssautil │ │ ├── load.go │ │ ├── switch.go │ │ └── visit.go │ ├── testmain.go │ ├── util.go │ └── wrappers.go │ └── types │ └── typeutil │ ├── imports.go │ ├── map.go │ ├── methodsetcache.go │ └── ui.go └── mvdan.cc └── lint ├── .travis.yml ├── LICENSE ├── README.md └── lint.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DISPLAY.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/DISPLAY.gif -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/README.md -------------------------------------------------------------------------------- /doc/README_zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/doc/README_zh-cn.md -------------------------------------------------------------------------------- /doc/copycode.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/doc/copycode.jpeg -------------------------------------------------------------------------------- /doc/cyclo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/doc/cyclo.jpeg -------------------------------------------------------------------------------- /doc/dependgraph.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/doc/dependgraph.jpeg -------------------------------------------------------------------------------- /doc/github-com-wgliang-goreporter-logcool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/doc/github-com-wgliang-goreporter-logcool.png -------------------------------------------------------------------------------- /doc/simplecode.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/doc/simplecode.jpeg -------------------------------------------------------------------------------- /doc/summary.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/doc/summary.jpeg -------------------------------------------------------------------------------- /doc/unittest_cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/doc/unittest_cover.jpeg -------------------------------------------------------------------------------- /doc/unittest_time.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/doc/unittest_time.jpeg -------------------------------------------------------------------------------- /engine/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/config.go -------------------------------------------------------------------------------- /engine/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/const.go -------------------------------------------------------------------------------- /engine/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/engine_test.go -------------------------------------------------------------------------------- /engine/processbar/processbar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/processbar/processbar.go -------------------------------------------------------------------------------- /engine/processbar/processbar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/processbar/processbar_test.go -------------------------------------------------------------------------------- /engine/report2html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/report2html.go -------------------------------------------------------------------------------- /engine/report2html_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/report2html_test.go -------------------------------------------------------------------------------- /engine/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/reporter.go -------------------------------------------------------------------------------- /engine/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy.go -------------------------------------------------------------------------------- /engine/strategy_copycheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_copycheck.go -------------------------------------------------------------------------------- /engine/strategy_countcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_countcode.go -------------------------------------------------------------------------------- /engine/strategy_cyclo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_cyclo.go -------------------------------------------------------------------------------- /engine/strategy_deadcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_deadcode.go -------------------------------------------------------------------------------- /engine/strategy_dependgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_dependgraph.go -------------------------------------------------------------------------------- /engine/strategy_depth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_depth.go -------------------------------------------------------------------------------- /engine/strategy_gofmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_gofmt.go -------------------------------------------------------------------------------- /engine/strategy_golint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_golint.go -------------------------------------------------------------------------------- /engine/strategy_govet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_govet.go -------------------------------------------------------------------------------- /engine/strategy_importpackages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_importpackages.go -------------------------------------------------------------------------------- /engine/strategy_interfacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_interfacer.go -------------------------------------------------------------------------------- /engine/strategy_simplecode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_simplecode.go -------------------------------------------------------------------------------- /engine/strategy_spellcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_spellcheck.go -------------------------------------------------------------------------------- /engine/strategy_unittest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/strategy_unittest.go -------------------------------------------------------------------------------- /engine/template.html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/engine/template.html.go -------------------------------------------------------------------------------- /go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/go.test.sh -------------------------------------------------------------------------------- /linters/aligncheck/aligncheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/aligncheck/aligncheck.go -------------------------------------------------------------------------------- /linters/aligncheck/aligncheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/aligncheck/aligncheck_test.go -------------------------------------------------------------------------------- /linters/copycheck/copycheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/copycheck.go -------------------------------------------------------------------------------- /linters/copycheck/copycheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/copycheck_test.go -------------------------------------------------------------------------------- /linters/copycheck/job/buildtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/job/buildtree.go -------------------------------------------------------------------------------- /linters/copycheck/job/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/job/parse.go -------------------------------------------------------------------------------- /linters/copycheck/output/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/output/html.go -------------------------------------------------------------------------------- /linters/copycheck/output/output_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/output/output_test.go -------------------------------------------------------------------------------- /linters/copycheck/output/plumbing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/output/plumbing.go -------------------------------------------------------------------------------- /linters/copycheck/output/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/output/text.go -------------------------------------------------------------------------------- /linters/copycheck/suffixtree/dupl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/suffixtree/dupl.go -------------------------------------------------------------------------------- /linters/copycheck/suffixtree/dupl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/suffixtree/dupl_test.go -------------------------------------------------------------------------------- /linters/copycheck/suffixtree/suffixtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/suffixtree/suffixtree.go -------------------------------------------------------------------------------- /linters/copycheck/suffixtree/suffixtree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/suffixtree/suffixtree_test.go -------------------------------------------------------------------------------- /linters/copycheck/syntax/golang/golang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/syntax/golang/golang.go -------------------------------------------------------------------------------- /linters/copycheck/syntax/syntax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/syntax/syntax.go -------------------------------------------------------------------------------- /linters/copycheck/syntax/syntax_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/copycheck/syntax/syntax_test.go -------------------------------------------------------------------------------- /linters/countcode/countcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/countcode/countcode.go -------------------------------------------------------------------------------- /linters/countcode/countcode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/countcode/countcode_test.go -------------------------------------------------------------------------------- /linters/cyclo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/cyclo/README.md -------------------------------------------------------------------------------- /linters/cyclo/cyclo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/cyclo/cyclo.go -------------------------------------------------------------------------------- /linters/cyclo/cyclo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/cyclo/cyclo_test.go -------------------------------------------------------------------------------- /linters/deadcode/deadcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/deadcode/deadcode.go -------------------------------------------------------------------------------- /linters/deadcode/deadcode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/deadcode/deadcode_test.go -------------------------------------------------------------------------------- /linters/deadcode/testdata/p1/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/deadcode/testdata/p1/sample.go -------------------------------------------------------------------------------- /linters/deadcode/testdata/p2/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/deadcode/testdata/p2/sample.go -------------------------------------------------------------------------------- /linters/deadcode/testdata/p3/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/deadcode/testdata/p3/sample.go -------------------------------------------------------------------------------- /linters/deadcode/testdata/p3/sample_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/deadcode/testdata/p3/sample_test.go -------------------------------------------------------------------------------- /linters/depend/depend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/depend/depend.go -------------------------------------------------------------------------------- /linters/depend/depend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/depend/depend_test.go -------------------------------------------------------------------------------- /linters/depth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/depth/README.md -------------------------------------------------------------------------------- /linters/depth/godepth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/depth/godepth.go -------------------------------------------------------------------------------- /linters/depth/godepth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/depth/godepth_test.go -------------------------------------------------------------------------------- /linters/errorcheck/errorcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/errorcheck/errorcheck.go -------------------------------------------------------------------------------- /linters/errorcheck/errorcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/errorcheck/errorcheck_test.go -------------------------------------------------------------------------------- /linters/errorcheck/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/errorcheck/test/test.go -------------------------------------------------------------------------------- /linters/errorcheck/test/test2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/errorcheck/test/test2.go -------------------------------------------------------------------------------- /linters/flen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/flen/README.md -------------------------------------------------------------------------------- /linters/flen/flen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/flen/flen.go -------------------------------------------------------------------------------- /linters/flen/flen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/flen/flen_test.go -------------------------------------------------------------------------------- /linters/gofmt/gofmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/gofmt/gofmt.go -------------------------------------------------------------------------------- /linters/gofmt/gofmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/gofmt/gofmt_test.go -------------------------------------------------------------------------------- /linters/golint/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/.travis.yml -------------------------------------------------------------------------------- /linters/golint/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/CONTRIBUTING.md -------------------------------------------------------------------------------- /linters/golint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/LICENSE -------------------------------------------------------------------------------- /linters/golint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/README.md -------------------------------------------------------------------------------- /linters/golint/golint/golint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/golint/golint.go -------------------------------------------------------------------------------- /linters/golint/golint/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/golint/import.go -------------------------------------------------------------------------------- /linters/golint/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/import.go -------------------------------------------------------------------------------- /linters/golint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/lint.go -------------------------------------------------------------------------------- /linters/golint/lint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/lint_test.go -------------------------------------------------------------------------------- /linters/golint/linter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/linter.go -------------------------------------------------------------------------------- /linters/golint/linter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/linter_test.go -------------------------------------------------------------------------------- /linters/golint/misc/emacs/golint.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/misc/emacs/golint.el -------------------------------------------------------------------------------- /linters/golint/misc/vim/ftplugin/go/lint.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/misc/vim/ftplugin/go/lint.vim -------------------------------------------------------------------------------- /linters/golint/testdata/4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/4.go -------------------------------------------------------------------------------- /linters/golint/testdata/5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/5_test.go -------------------------------------------------------------------------------- /linters/golint/testdata/blank-import-lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/blank-import-lib.go -------------------------------------------------------------------------------- /linters/golint/testdata/blank-import-lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/blank-import-lib_test.go -------------------------------------------------------------------------------- /linters/golint/testdata/blank-import-main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/blank-import-main.go -------------------------------------------------------------------------------- /linters/golint/testdata/broken.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/broken.go -------------------------------------------------------------------------------- /linters/golint/testdata/common-methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/common-methods.go -------------------------------------------------------------------------------- /linters/golint/testdata/const-block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/const-block.go -------------------------------------------------------------------------------- /linters/golint/testdata/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/context.go -------------------------------------------------------------------------------- /linters/golint/testdata/contextkeytypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/contextkeytypes.go -------------------------------------------------------------------------------- /linters/golint/testdata/else-multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/else-multi.go -------------------------------------------------------------------------------- /linters/golint/testdata/else.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/else.go -------------------------------------------------------------------------------- /linters/golint/testdata/error-return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/error-return.go -------------------------------------------------------------------------------- /linters/golint/testdata/errorf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/errorf.go -------------------------------------------------------------------------------- /linters/golint/testdata/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/errors.go -------------------------------------------------------------------------------- /linters/golint/testdata/import-dot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/import-dot.go -------------------------------------------------------------------------------- /linters/golint/testdata/inc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/inc.go -------------------------------------------------------------------------------- /linters/golint/testdata/names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/names.go -------------------------------------------------------------------------------- /linters/golint/testdata/pkg-doc1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/pkg-doc1.go -------------------------------------------------------------------------------- /linters/golint/testdata/pkg-doc2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/pkg-doc2.go -------------------------------------------------------------------------------- /linters/golint/testdata/pkg-doc3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/pkg-doc3.go -------------------------------------------------------------------------------- /linters/golint/testdata/pkg-doc4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/pkg-doc4.go -------------------------------------------------------------------------------- /linters/golint/testdata/pkg-doc5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/pkg-doc5.go -------------------------------------------------------------------------------- /linters/golint/testdata/pkg-main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/pkg-main.go -------------------------------------------------------------------------------- /linters/golint/testdata/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/range.go -------------------------------------------------------------------------------- /linters/golint/testdata/receiver-names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/receiver-names.go -------------------------------------------------------------------------------- /linters/golint/testdata/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/sort.go -------------------------------------------------------------------------------- /linters/golint/testdata/stutter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/stutter.go -------------------------------------------------------------------------------- /linters/golint/testdata/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/time.go -------------------------------------------------------------------------------- /linters/golint/testdata/unexp-return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/unexp-return.go -------------------------------------------------------------------------------- /linters/golint/testdata/var-decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/golint/testdata/var-decl.go -------------------------------------------------------------------------------- /linters/govet/govet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/govet/govet.go -------------------------------------------------------------------------------- /linters/govet/govet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/govet/govet_test.go -------------------------------------------------------------------------------- /linters/interfacer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/LICENSE -------------------------------------------------------------------------------- /linters/interfacer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/README.md -------------------------------------------------------------------------------- /linters/interfacer/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/cache.go -------------------------------------------------------------------------------- /linters/interfacer/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/check.go -------------------------------------------------------------------------------- /linters/interfacer/interfacer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/interfacer.go -------------------------------------------------------------------------------- /linters/interfacer/interfacer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/interfacer_test.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/alias.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/assign.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/block.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/compare.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/composite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/composite.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/const.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/convert.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/dereference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/dereference.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/fields.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/global_call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/global_call.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/implement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/implement.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/import.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/issue22.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/issue22.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/lit_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/lit_types.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/nested_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/nested_func.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/noniface_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/noniface_usage.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/noninteresting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/noninteresting.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/own_iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/own_iface.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/param_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/param_groups.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/params.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/readme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/readme.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/recursive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/recursive.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/repeated_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/repeated_types.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/results.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/shadow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/shadow.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/simple.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/skip_call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/skip_call.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/unexported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/unexported.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/unexported_byvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/unexported_byvalue.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/unusual_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/unusual_types.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/used.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/used.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/used_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/used_func.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/files/wanted_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/files/wanted_type.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/local/multipkg/simple.go: -------------------------------------------------------------------------------- 1 | package multipkg 2 | -------------------------------------------------------------------------------- /linters/interfacer/testdata/local/single/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/local/single/simple.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/local/single/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/local/single/struct.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/deps/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/src/deps/import.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/deps/import15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/src/deps/import15.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/deps/single.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/src/deps/single.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/deps/vendor/foo/bar/def.go: -------------------------------------------------------------------------------- 1 | package bar 2 | 3 | var Bar = 0 4 | -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/grab-import/def/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/src/grab-import/def/def.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/grab-import/def/nested/def.go: -------------------------------------------------------------------------------- 1 | package nested 2 | 3 | type Fooer interface { 4 | Foo() 5 | } 6 | -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/grab-import/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/src/grab-import/use.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/nested/pkg/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/src/nested/pkg/simple.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/single/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/src/single/simple.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/single/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/src/single/struct.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/skip/.hidden/simple.go: -------------------------------------------------------------------------------- 1 | package simple 2 | -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/skip/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/testdata/src/skip/simple.go -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/skip/testdata/simple.go: -------------------------------------------------------------------------------- 1 | package foo 2 | -------------------------------------------------------------------------------- /linters/interfacer/testdata/src/skip/vendor/simple.go: -------------------------------------------------------------------------------- 1 | package foo 2 | -------------------------------------------------------------------------------- /linters/interfacer/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/interfacer/types.go -------------------------------------------------------------------------------- /linters/simplecode/gosimple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/gosimple.go -------------------------------------------------------------------------------- /linters/simplecode/gosimple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/gosimple_test.go -------------------------------------------------------------------------------- /linters/simplecode/gotool/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/gotool/go13.go -------------------------------------------------------------------------------- /linters/simplecode/gotool/go14-15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/gotool/go14-15.go -------------------------------------------------------------------------------- /linters/simplecode/gotool/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/gotool/go16.go -------------------------------------------------------------------------------- /linters/simplecode/gotool/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/gotool/match.go -------------------------------------------------------------------------------- /linters/simplecode/gotool/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/gotool/match_test.go -------------------------------------------------------------------------------- /linters/simplecode/gotool/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/gotool/tool.go -------------------------------------------------------------------------------- /linters/simplecode/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/lint/lint.go -------------------------------------------------------------------------------- /linters/simplecode/lint/lint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/lint/lint16.go -------------------------------------------------------------------------------- /linters/simplecode/lint/lint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/lint/lint_test.go -------------------------------------------------------------------------------- /linters/simplecode/lint/lintutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/lint/lintutil/util.go -------------------------------------------------------------------------------- /linters/simplecode/lint/testutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/lint/testutil/util.go -------------------------------------------------------------------------------- /linters/simplecode/simple/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/simple/lint.go -------------------------------------------------------------------------------- /linters/simplecode/simple/lint17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/simple/lint17.go -------------------------------------------------------------------------------- /linters/simplecode/simple/lint18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/simple/lint18.go -------------------------------------------------------------------------------- /linters/simplecode/simple/lint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/simple/lint_test.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LimeTimeUntil_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LimeTimeUntil_go17.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LimeTimeUntil_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LimeTimeUntil_go18.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LintAssertNotNil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LintAssertNotNil.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LintBlankOK.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LintBlankOK.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LintDeclareAssign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LintDeclareAssign.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LintLoopSlide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LintLoopSlide.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LintMakeLenCap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LintMakeLenCap.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LintRedundantBreak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LintRedundantBreak.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LintRedundantSprintf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LintRedundantSprintf.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/LintStringCopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/LintStringCopy.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/bool-cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/bool-cmp.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/compare.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/contains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/contains.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/convert.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/copy.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/for-true.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/for-true.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/format-int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/format-int.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/generated.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/if-return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/if-return.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/if-simpler-return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/if-simpler-return.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/loop-append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/loop-append.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/nil-len.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/nil-len.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/range.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/receive-blank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/receive-blank.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/regexp-raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/regexp-raw.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/single-case-select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/single-case-select.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/slicing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/slicing.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/time-since.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/time-since.go -------------------------------------------------------------------------------- /linters/simplecode/testdata/trim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simplecode/testdata/trim.go -------------------------------------------------------------------------------- /linters/simpler/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/CONTRIBUTING.md -------------------------------------------------------------------------------- /linters/simpler/internal/sharedcheck/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/internal/sharedcheck/lint.go -------------------------------------------------------------------------------- /linters/simpler/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/lint.go -------------------------------------------------------------------------------- /linters/simpler/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/lint/LICENSE -------------------------------------------------------------------------------- /linters/simpler/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/lint/lint.go -------------------------------------------------------------------------------- /linters/simpler/lint/lintutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/lint/lintutil/util.go -------------------------------------------------------------------------------- /linters/simpler/lint/testutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/lint/testutil/util.go -------------------------------------------------------------------------------- /linters/simpler/lint17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/lint17.go -------------------------------------------------------------------------------- /linters/simpler/lint18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/lint18.go -------------------------------------------------------------------------------- /linters/simpler/lint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/lint_test.go -------------------------------------------------------------------------------- /linters/simpler/simpler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/simpler.go -------------------------------------------------------------------------------- /linters/simpler/simpler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/simpler_test.go -------------------------------------------------------------------------------- /linters/simpler/ssa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/LICENSE -------------------------------------------------------------------------------- /linters/simpler/ssa/blockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/blockopt.go -------------------------------------------------------------------------------- /linters/simpler/ssa/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/builder.go -------------------------------------------------------------------------------- /linters/simpler/ssa/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/builder_test.go -------------------------------------------------------------------------------- /linters/simpler/ssa/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/const.go -------------------------------------------------------------------------------- /linters/simpler/ssa/const15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/const15.go -------------------------------------------------------------------------------- /linters/simpler/ssa/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/create.go -------------------------------------------------------------------------------- /linters/simpler/ssa/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/doc.go -------------------------------------------------------------------------------- /linters/simpler/ssa/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/dom.go -------------------------------------------------------------------------------- /linters/simpler/ssa/emit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/emit.go -------------------------------------------------------------------------------- /linters/simpler/ssa/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/example_test.go -------------------------------------------------------------------------------- /linters/simpler/ssa/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/func.go -------------------------------------------------------------------------------- /linters/simpler/ssa/identical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/identical.go -------------------------------------------------------------------------------- /linters/simpler/ssa/identical_17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/identical_17.go -------------------------------------------------------------------------------- /linters/simpler/ssa/lift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/lift.go -------------------------------------------------------------------------------- /linters/simpler/ssa/lvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/lvalue.go -------------------------------------------------------------------------------- /linters/simpler/ssa/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/methods.go -------------------------------------------------------------------------------- /linters/simpler/ssa/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/mode.go -------------------------------------------------------------------------------- /linters/simpler/ssa/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/print.go -------------------------------------------------------------------------------- /linters/simpler/ssa/sanity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/sanity.go -------------------------------------------------------------------------------- /linters/simpler/ssa/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/source.go -------------------------------------------------------------------------------- /linters/simpler/ssa/source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/source_test.go -------------------------------------------------------------------------------- /linters/simpler/ssa/ssa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/ssa.go -------------------------------------------------------------------------------- /linters/simpler/ssa/ssautil/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/ssautil/load.go -------------------------------------------------------------------------------- /linters/simpler/ssa/ssautil/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/ssautil/load_test.go -------------------------------------------------------------------------------- /linters/simpler/ssa/ssautil/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/ssautil/switch.go -------------------------------------------------------------------------------- /linters/simpler/ssa/ssautil/switch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/ssautil/switch_test.go -------------------------------------------------------------------------------- /linters/simpler/ssa/ssautil/testdata/switches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/ssautil/testdata/switches.go -------------------------------------------------------------------------------- /linters/simpler/ssa/ssautil/visit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/ssautil/visit.go -------------------------------------------------------------------------------- /linters/simpler/ssa/stdlib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/stdlib_test.go -------------------------------------------------------------------------------- /linters/simpler/ssa/testdata/objlookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/testdata/objlookup.go -------------------------------------------------------------------------------- /linters/simpler/ssa/testdata/valueforexpr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/testdata/valueforexpr.go -------------------------------------------------------------------------------- /linters/simpler/ssa/testmain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/testmain.go -------------------------------------------------------------------------------- /linters/simpler/ssa/testmain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/testmain_test.go -------------------------------------------------------------------------------- /linters/simpler/ssa/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/util.go -------------------------------------------------------------------------------- /linters/simpler/ssa/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/wrappers.go -------------------------------------------------------------------------------- /linters/simpler/ssa/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/ssa/write.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LimeTimeUntil_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LimeTimeUntil_go17.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LimeTimeUntil_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LimeTimeUntil_go18.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintAssertNotNil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintAssertNotNil.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintBlankOK.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintBlankOK.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintBytesBufferConversions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintBytesBufferConversions.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintDeclareAssign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintDeclareAssign.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintErrorsNewSprintf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintErrorsNewSprintf.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintLoopSlide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintLoopSlide.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintMakeLenCap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintMakeLenCap.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintRangeStringRunes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintRangeStringRunes.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintRedundantBreak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintRedundantBreak.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintRedundantReturn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintRedundantReturn.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintRedundantSprintf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintRedundantSprintf.go -------------------------------------------------------------------------------- /linters/simpler/testdata/LintStringCopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/LintStringCopy.go -------------------------------------------------------------------------------- /linters/simpler/testdata/bool-cmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/bool-cmp.go -------------------------------------------------------------------------------- /linters/simpler/testdata/compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/compare.go -------------------------------------------------------------------------------- /linters/simpler/testdata/contains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/contains.go -------------------------------------------------------------------------------- /linters/simpler/testdata/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/convert.go -------------------------------------------------------------------------------- /linters/simpler/testdata/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/copy.go -------------------------------------------------------------------------------- /linters/simpler/testdata/for-true.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/for-true.go -------------------------------------------------------------------------------- /linters/simpler/testdata/format-int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/format-int.go -------------------------------------------------------------------------------- /linters/simpler/testdata/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/generated.go -------------------------------------------------------------------------------- /linters/simpler/testdata/if-return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/if-return.go -------------------------------------------------------------------------------- /linters/simpler/testdata/if-simpler-return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/if-simpler-return.go -------------------------------------------------------------------------------- /linters/simpler/testdata/loop-append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/loop-append.go -------------------------------------------------------------------------------- /linters/simpler/testdata/nil-len.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/nil-len.go -------------------------------------------------------------------------------- /linters/simpler/testdata/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/range.go -------------------------------------------------------------------------------- /linters/simpler/testdata/receive-blank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/receive-blank.go -------------------------------------------------------------------------------- /linters/simpler/testdata/regexp-raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/regexp-raw.go -------------------------------------------------------------------------------- /linters/simpler/testdata/single-case-select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/single-case-select.go -------------------------------------------------------------------------------- /linters/simpler/testdata/slicing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/slicing.go -------------------------------------------------------------------------------- /linters/simpler/testdata/time-since.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/time-since.go -------------------------------------------------------------------------------- /linters/simpler/testdata/trim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/simpler/testdata/trim.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/.travis.yml -------------------------------------------------------------------------------- /linters/spellcheck/misspell/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/Dockerfile -------------------------------------------------------------------------------- /linters/spellcheck/misspell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/LICENSE -------------------------------------------------------------------------------- /linters/spellcheck/misspell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/Makefile -------------------------------------------------------------------------------- /linters/spellcheck/misspell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/README.md -------------------------------------------------------------------------------- /linters/spellcheck/misspell/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/benchmark_test.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/case.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/case_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/case_test.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/falsepositives_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/falsepositives_test.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/mime.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/mime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/mime_test.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/notwords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/notwords.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/notwords_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/notwords_test.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/precommit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | make ci 3 | -------------------------------------------------------------------------------- /linters/spellcheck/misspell/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/replace.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/replace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/replace_test.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/stringreplacer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/stringreplacer/LICENSE -------------------------------------------------------------------------------- /linters/spellcheck/misspell/stringreplacer/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/stringreplacer/replace.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/url.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/url_test.go -------------------------------------------------------------------------------- /linters/spellcheck/misspell/words.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/misspell/words.go -------------------------------------------------------------------------------- /linters/spellcheck/spellcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/spellcheck.go -------------------------------------------------------------------------------- /linters/spellcheck/spellcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/spellcheck/spellcheck_test.go -------------------------------------------------------------------------------- /linters/staticcheck/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/CONTRIBUTING.md -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/callgraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/callgraph.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/cha/cha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/cha/cha.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/cha/cha_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/cha/cha_test.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/cha/testdata/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/cha/testdata/func.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/cha/testdata/iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/cha/testdata/iface.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/cha/testdata/recv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/cha/testdata/recv.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/rta/rta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/rta/rta.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/rta/rta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/rta/rta_test.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/rta/testdata/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/rta/testdata/func.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/rta/testdata/iface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/rta/testdata/iface.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/rta/testdata/rtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/rta/testdata/rtype.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/static/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/static/static.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/static/static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/static/static_test.go -------------------------------------------------------------------------------- /linters/staticcheck/callgraph/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/callgraph/util.go -------------------------------------------------------------------------------- /linters/staticcheck/functions/concrete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/functions/concrete.go -------------------------------------------------------------------------------- /linters/staticcheck/functions/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/functions/functions.go -------------------------------------------------------------------------------- /linters/staticcheck/functions/loops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/functions/loops.go -------------------------------------------------------------------------------- /linters/staticcheck/functions/pure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/functions/pure.go -------------------------------------------------------------------------------- /linters/staticcheck/functions/terminates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/functions/terminates.go -------------------------------------------------------------------------------- /linters/staticcheck/gcsizes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/gcsizes/LICENSE -------------------------------------------------------------------------------- /linters/staticcheck/gcsizes/sizes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/gcsizes/sizes.go -------------------------------------------------------------------------------- /linters/staticcheck/internal/sharedcheck/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/internal/sharedcheck/lint.go -------------------------------------------------------------------------------- /linters/staticcheck/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/lint.go -------------------------------------------------------------------------------- /linters/staticcheck/lint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/lint_test.go -------------------------------------------------------------------------------- /linters/staticcheck/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/rules.go -------------------------------------------------------------------------------- /linters/staticcheck/staticcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/staticcheck.go -------------------------------------------------------------------------------- /linters/staticcheck/staticcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/staticcheck_test.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckBenchmarkN.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckBenchmarkN.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckBytesEqualIP.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckBytesEqualIP.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckCanonicalHeaderKey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckCanonicalHeaderKey.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckConcurrentTesting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckConcurrentTesting.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckCyclicFinalizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckCyclicFinalizer.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckDeferLock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckDeferLock.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckDeprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckDeprecated.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckDiffSizeComparison.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckDiffSizeComparison.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckDoubleNegation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckDoubleNegation.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckEarlyDefer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckEarlyDefer.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckEmptyBranch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckEmptyBranch.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckEmptyBranch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckEmptyBranch_test.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckEncodingBinary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckEncodingBinary.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckExec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckExec.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckFlagUsage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckFlagUsage.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckIneffectiveAppend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckIneffectiveAppend.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckIneffectiveCopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckIneffectiveCopy.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckIneffectiveLoop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckIneffectiveLoop.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckInfiniteEmptyLoop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckInfiniteEmptyLoop.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckInfiniteRecursion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckInfiniteRecursion.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckLeakyTimeTick-main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckLeakyTimeTick-main.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckLeakyTimeTick.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckLeakyTimeTick.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckLhsRhsIdentical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckLhsRhsIdentical.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckListenAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckListenAddress.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckLoopCondition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckLoopCondition.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckLoopEmptyDefault.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckLoopEmptyDefault.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckMathInt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckMathInt.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckNaNComparison.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckNaNComparison.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckNilMaps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckNilMaps.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckNonUniqueCutset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckNonUniqueCutset.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckPureFunctions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckPureFunctions.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckPureFunctions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckPureFunctions_test.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckRangeStringRunes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckRangeStringRunes.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckRegexpMatchLoop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckRegexpMatchLoop.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckRegexps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckRegexps.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckRepeatedIfElse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckRepeatedIfElse.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckScopedBreak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckScopedBreak.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckSillyBitwiseOps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckSillyBitwiseOps.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckTemplate.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckTestMainExit-1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckTestMainExit-1.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckTestMainExit-2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckTestMainExit-2.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckTestMainExit-3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckTestMainExit-3.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckTestMainExit-4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckTestMainExit-4.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckTestMainExit-5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckTestMainExit-5.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckTimeParse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckTimeParse.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckTimeSleepConstant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckTimeSleepConstant.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckURLs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckURLs.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckUnmarshalPointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckUnmarshalPointer.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckUnsafePrintf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckUnsafePrintf.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckUnsignedComparison.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckUnsignedComparison.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckUntrappableSignal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckUntrappableSignal.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/CheckWaitgroupAdd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/CheckWaitgroupAdd.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/checkStdlibUsageSeeker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/checkStdlibUsageSeeker.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/function-literals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/function-literals.go -------------------------------------------------------------------------------- /linters/staticcheck/testdata/synthetic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/testdata/synthetic.go -------------------------------------------------------------------------------- /linters/staticcheck/vrp/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/vrp/channel.go -------------------------------------------------------------------------------- /linters/staticcheck/vrp/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/vrp/int.go -------------------------------------------------------------------------------- /linters/staticcheck/vrp/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/vrp/slice.go -------------------------------------------------------------------------------- /linters/staticcheck/vrp/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/vrp/string.go -------------------------------------------------------------------------------- /linters/staticcheck/vrp/vrp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/staticcheck/vrp/vrp.go -------------------------------------------------------------------------------- /linters/structcheck/structcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/structcheck/structcheck.go -------------------------------------------------------------------------------- /linters/structcheck/structcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/structcheck/structcheck_test.go -------------------------------------------------------------------------------- /linters/unittest/unittest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/unittest/unittest.go -------------------------------------------------------------------------------- /linters/unittest/unittest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/unittest/unittest_test.go -------------------------------------------------------------------------------- /linters/varcheck/varcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/varcheck/varcheck.go -------------------------------------------------------------------------------- /linters/varcheck/varcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/linters/varcheck/varcheck_test.go -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/logo.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/main.go -------------------------------------------------------------------------------- /templates/template-v1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/templates/template-v1.html -------------------------------------------------------------------------------- /templates/template-v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/templates/template-v2.html -------------------------------------------------------------------------------- /templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/templates/template.html -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/utils/utils.go -------------------------------------------------------------------------------- /utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/utils/utils_test.go -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/inject/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/facebookgo/inject/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/inject/inject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/facebookgo/inject/inject.go -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/inject/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/facebookgo/inject/license -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/inject/patents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/facebookgo/inject/patents -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/inject/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/facebookgo/inject/readme.md -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/structtag/.gitignore: -------------------------------------------------------------------------------- 1 | /go.structtag.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/structtag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/facebookgo/structtag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/structtag/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/facebookgo/structtag/license -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/structtag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/facebookgo/structtag/readme.md -------------------------------------------------------------------------------- /vendor/github.com/facebookgo/structtag/structtag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/facebookgo/structtag/structtag.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/fatih/color/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/Gopkg.lock -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/Gopkg.toml -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_adapter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_any.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_any_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_any_array.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_any_bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_any_bool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_any_float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_any_float.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_any_int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_any_int32.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_any_int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_any_int64.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_any_nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_any_nil.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_config.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_iter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_iter_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_iter_int.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_iter_skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_iter_skip.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_pool.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_reflect.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/feature_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/feature_stream.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/jsoniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/jsoniter.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/LEGAL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/LEGAL -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/README.md -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/go13.go -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/go14-15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/go14-15.go -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/go16-18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/go16-18.go -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/internal/load/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/internal/load/path.go -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/internal/load/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/internal/load/pkg.go -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/match.go -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/match18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/match18.go -------------------------------------------------------------------------------- /vendor/github.com/kisielk/gotool/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/kisielk/gotool/tool.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-colorable/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-colorable/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-colorable/noncolorable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-colorable/noncolorable.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_appengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/isatty_appengine.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/isatty_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/isatty_linux.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/isatty_others.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/isatty_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/isatty_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/mattn/go-isatty/isatty_windows.go -------------------------------------------------------------------------------- /vendor/github.com/reconquest/barely/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/reconquest/barely/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/reconquest/barely/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/reconquest/barely/README.md -------------------------------------------------------------------------------- /vendor/github.com/reconquest/barely/barely.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/reconquest/barely/barely.go -------------------------------------------------------------------------------- /vendor/github.com/reconquest/loreley/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/reconquest/loreley/README.md -------------------------------------------------------------------------------- /vendor/github.com/reconquest/loreley/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/reconquest/loreley/demo.png -------------------------------------------------------------------------------- /vendor/github.com/reconquest/loreley/loreley.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/github.com/reconquest/loreley/loreley.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/ssh/terminal/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/file_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace386_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zptrace386_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracearm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zptracearm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracemips_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zptracemips_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracemipsle_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zptracemipsle_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/asm_windows_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/asm_windows_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/security_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/security_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/types_windows_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/sys/windows/zsyscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ast/astutil/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ast/astutil/imports.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ast/astutil/rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ast/astutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ast/astutil/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/buildutil/overlay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/buildutil/overlay.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/buildutil/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/buildutil/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/buildutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/buildutil/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/gcexportdata/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/gcexportdata/main.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/gcimporter15/bexport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/gcimporter15/bexport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/gcimporter15/bimport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/gcimporter15/bimport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/loader/cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/loader/cgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/loader/cgo_pkgconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/loader/cgo_pkgconfig.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/loader/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/loader/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/loader/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/loader/loader.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/loader/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/loader/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/blockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/blockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/builder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/create.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/dom.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/emit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/emit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/func.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/identical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/identical.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/identical_17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/identical_17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/lift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/lift.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/lvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/lvalue.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/methods.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/mode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/print.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/sanity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/sanity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/source.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/ssa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/ssa.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/ssautil/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/ssautil/load.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/ssautil/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/ssautil/switch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/ssautil/visit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/ssautil/visit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/testmain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/testmain.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/ssa/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/ssa/wrappers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/types/typeutil/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/types/typeutil/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/go/types/typeutil/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/golang.org/x/tools/go/types/typeutil/ui.go -------------------------------------------------------------------------------- /vendor/mvdan.cc/lint/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/mvdan.cc/lint/.travis.yml -------------------------------------------------------------------------------- /vendor/mvdan.cc/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/mvdan.cc/lint/LICENSE -------------------------------------------------------------------------------- /vendor/mvdan.cc/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/mvdan.cc/lint/README.md -------------------------------------------------------------------------------- /vendor/mvdan.cc/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qax-os/goreporter/HEAD/vendor/mvdan.cc/lint/lint.go --------------------------------------------------------------------------------