├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── aligncheck ├── aligncheck.go └── aligncheck_test.go ├── checkers └── checkers.go ├── dupl ├── dupl.go └── dupl_test.go ├── errcheck ├── errcheck.go └── errcheck_test.go ├── gofmt ├── gofmt.go └── gofmt_test.go ├── golint ├── golint.go └── golint_test.go ├── gometalinter ├── _vendored │ ├── .gitignore │ ├── manifest │ └── src │ │ ├── github.com │ │ ├── alecthomas │ │ │ ├── gometalinter │ │ │ │ ├── COPYING │ │ │ │ ├── aggregate.go │ │ │ │ ├── checkstyle.go │ │ │ │ ├── main.go │ │ │ │ ├── regressiontests │ │ │ │ │ └── support.go │ │ │ │ └── vendor │ │ │ │ │ └── src │ │ │ │ │ ├── github.com │ │ │ │ │ ├── HewlettPackard │ │ │ │ │ │ └── gas │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── analyzer.go │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ ├── issue.go │ │ │ │ │ │ │ └── select.go │ │ │ │ │ │ │ ├── filelist.go │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── formatter.go │ │ │ │ │ │ │ ├── rulelist.go │ │ │ │ │ │ │ ├── rules │ │ │ │ │ │ │ ├── bind.go │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── fileperms.go │ │ │ │ │ │ │ ├── hardcoded_credentials.go │ │ │ │ │ │ │ ├── httpoxy.go │ │ │ │ │ │ │ ├── rand.go │ │ │ │ │ │ │ ├── rsa.go │ │ │ │ │ │ │ ├── sql.go │ │ │ │ │ │ │ ├── subproc.go │ │ │ │ │ │ │ ├── tempfiles.go │ │ │ │ │ │ │ ├── templates.go │ │ │ │ │ │ │ ├── tls.go │ │ │ │ │ │ │ ├── unsafe.go │ │ │ │ │ │ │ └── weakcrypto.go │ │ │ │ │ │ │ └── tools.go │ │ │ │ │ ├── alecthomas │ │ │ │ │ │ └── gocyclo │ │ │ │ │ │ │ └── gocyclo.go │ │ │ │ │ ├── client9 │ │ │ │ │ │ └── misspell │ │ │ │ │ │ │ ├── case.go │ │ │ │ │ │ │ ├── cmd │ │ │ │ │ │ │ └── misspell │ │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ │ ├── mime.go │ │ │ │ │ │ │ ├── notwords.go │ │ │ │ │ │ │ ├── replace.go │ │ │ │ │ │ │ ├── stringreplacer │ │ │ │ │ │ │ └── replace.go │ │ │ │ │ │ │ ├── url.go │ │ │ │ │ │ │ └── words.go │ │ │ │ │ ├── golang │ │ │ │ │ │ └── lint │ │ │ │ │ │ │ ├── golint │ │ │ │ │ │ │ ├── golint.go │ │ │ │ │ │ │ └── import.go │ │ │ │ │ │ │ └── lint.go │ │ │ │ │ ├── gordonklaus │ │ │ │ │ │ └── ineffassign │ │ │ │ │ │ │ └── ineffassign.go │ │ │ │ │ ├── jgautheron │ │ │ │ │ │ └── goconst │ │ │ │ │ │ │ ├── cmd │ │ │ │ │ │ │ └── goconst │ │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ │ ├── parser.go │ │ │ │ │ │ │ └── visitor.go │ │ │ │ │ ├── kisielk │ │ │ │ │ │ ├── errcheck │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ │ └── errcheck │ │ │ │ │ │ │ │ │ └── errcheck.go │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ └── gotool │ │ │ │ │ │ │ ├── go13.go │ │ │ │ │ │ │ ├── go14-15.go │ │ │ │ │ │ │ ├── go16.go │ │ │ │ │ │ │ ├── match.go │ │ │ │ │ │ │ └── tool.go │ │ │ │ │ ├── mdempsky │ │ │ │ │ │ └── unconvert │ │ │ │ │ │ │ └── unconvert.go │ │ │ │ │ ├── mibk │ │ │ │ │ │ └── dupl │ │ │ │ │ │ │ ├── job │ │ │ │ │ │ │ ├── buildtree.go │ │ │ │ │ │ │ └── parse.go │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ ├── html.go │ │ │ │ │ │ │ ├── plumbing.go │ │ │ │ │ │ │ └── text.go │ │ │ │ │ │ │ ├── suffixtree │ │ │ │ │ │ │ ├── dupl.go │ │ │ │ │ │ │ └── suffixtree.go │ │ │ │ │ │ │ └── syntax │ │ │ │ │ │ │ ├── golang │ │ │ │ │ │ │ └── golang.go │ │ │ │ │ │ │ └── syntax.go │ │ │ │ │ ├── mvdan │ │ │ │ │ │ └── interfacer │ │ │ │ │ │ │ ├── cache.go │ │ │ │ │ │ │ ├── check.go │ │ │ │ │ │ │ ├── cmd │ │ │ │ │ │ │ └── interfacer │ │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ │ ├── generate │ │ │ │ │ │ │ └── std │ │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ │ ├── std.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── opennota │ │ │ │ │ │ └── check │ │ │ │ │ │ │ └── cmd │ │ │ │ │ │ │ ├── aligncheck │ │ │ │ │ │ │ └── aligncheck.go │ │ │ │ │ │ │ ├── structcheck │ │ │ │ │ │ │ └── structcheck.go │ │ │ │ │ │ │ └── varcheck │ │ │ │ │ │ │ └── varcheck.go │ │ │ │ │ ├── tsenart │ │ │ │ │ │ └── deadcode │ │ │ │ │ │ │ └── deadcode.go │ │ │ │ │ └── walle │ │ │ │ │ │ └── lll │ │ │ │ │ │ ├── cmd │ │ │ │ │ │ └── lll │ │ │ │ │ │ │ └── main.go │ │ │ │ │ │ ├── lll.go │ │ │ │ │ │ └── vendor │ │ │ │ │ │ └── github.com │ │ │ │ │ │ └── alexflint │ │ │ │ │ │ └── go-arg │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ ├── scalar.go │ │ │ │ │ │ └── usage.go │ │ │ │ │ ├── golang.org │ │ │ │ │ └── x │ │ │ │ │ │ ├── text │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── gen │ │ │ │ │ │ │ │ ├── code.go │ │ │ │ │ │ │ │ └── gen.go │ │ │ │ │ │ │ ├── triegen │ │ │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ │ │ ├── print.go │ │ │ │ │ │ │ │ └── triegen.go │ │ │ │ │ │ │ └── ucd │ │ │ │ │ │ │ │ └── ucd.go │ │ │ │ │ │ ├── transform │ │ │ │ │ │ │ └── transform.go │ │ │ │ │ │ ├── unicode │ │ │ │ │ │ │ └── cldr │ │ │ │ │ │ │ │ ├── base.go │ │ │ │ │ │ │ │ ├── cldr.go │ │ │ │ │ │ │ │ ├── collate.go │ │ │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ │ │ ├── makexml.go │ │ │ │ │ │ │ │ ├── resolve.go │ │ │ │ │ │ │ │ ├── slice.go │ │ │ │ │ │ │ │ └── xml.go │ │ │ │ │ │ └── width │ │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ │ ├── gen_common.go │ │ │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ │ │ ├── kind_string.go │ │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ │ ├── transform.go │ │ │ │ │ │ │ ├── trieval.go │ │ │ │ │ │ │ └── width.go │ │ │ │ │ │ └── tools │ │ │ │ │ │ ├── cmd │ │ │ │ │ │ ├── goimports │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── goimports.go │ │ │ │ │ │ └── gotype │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ └── gotype.go │ │ │ │ │ │ ├── container │ │ │ │ │ │ └── intsets │ │ │ │ │ │ │ ├── popcnt_amd64.go │ │ │ │ │ │ │ ├── popcnt_amd64.s │ │ │ │ │ │ │ ├── popcnt_gccgo.go │ │ │ │ │ │ │ ├── popcnt_gccgo_c.c │ │ │ │ │ │ │ ├── popcnt_generic.go │ │ │ │ │ │ │ ├── sparse.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── go │ │ │ │ │ │ ├── ast │ │ │ │ │ │ │ └── astutil │ │ │ │ │ │ │ │ ├── enclosing.go │ │ │ │ │ │ │ │ ├── imports.go │ │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── buildutil │ │ │ │ │ │ │ ├── allpackages.go │ │ │ │ │ │ │ ├── fakecontext.go │ │ │ │ │ │ │ ├── overlay.go │ │ │ │ │ │ │ ├── tags.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── gcimporter15 │ │ │ │ │ │ │ ├── bexport.go │ │ │ │ │ │ │ ├── bimport.go │ │ │ │ │ │ │ ├── exportdata.go │ │ │ │ │ │ │ ├── gcimporter.go │ │ │ │ │ │ │ ├── setname15.go │ │ │ │ │ │ │ └── setname16.go │ │ │ │ │ │ ├── loader │ │ │ │ │ │ │ ├── cgo.go │ │ │ │ │ │ │ ├── cgo_pkgconfig.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── go16.go │ │ │ │ │ │ │ ├── loader.go │ │ │ │ │ │ │ └── util.go │ │ │ │ │ │ ├── ssa │ │ │ │ │ │ │ ├── blockopt.go │ │ │ │ │ │ │ ├── builder.go │ │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ │ ├── const15.go │ │ │ │ │ │ │ ├── create.go │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── dom.go │ │ │ │ │ │ │ ├── emit.go │ │ │ │ │ │ │ ├── func.go │ │ │ │ │ │ │ ├── interp │ │ │ │ │ │ │ │ ├── external.go │ │ │ │ │ │ │ │ ├── external_darwin.go │ │ │ │ │ │ │ │ ├── external_freebsd.go │ │ │ │ │ │ │ │ ├── external_plan9.go │ │ │ │ │ │ │ │ ├── external_unix.go │ │ │ │ │ │ │ │ ├── external_windows.go │ │ │ │ │ │ │ │ ├── interp.go │ │ │ │ │ │ │ │ ├── map.go │ │ │ │ │ │ │ │ ├── ops.go │ │ │ │ │ │ │ │ ├── reflect.go │ │ │ │ │ │ │ │ └── value.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 │ │ │ │ │ │ └── imports │ │ │ │ │ │ ├── fastwalk.go │ │ │ │ │ │ ├── fastwalk_dirent_fileno.go │ │ │ │ │ │ ├── fastwalk_dirent_ino.go │ │ │ │ │ │ ├── fastwalk_portable.go │ │ │ │ │ │ ├── fastwalk_unix.go │ │ │ │ │ │ ├── fix.go │ │ │ │ │ │ ├── imports.go │ │ │ │ │ │ ├── mkindex.go │ │ │ │ │ │ ├── mkstdlib.go │ │ │ │ │ │ ├── sortimports.go │ │ │ │ │ │ └── zstdlib.go │ │ │ │ │ └── honnef.co │ │ │ │ │ └── go │ │ │ │ │ ├── lint │ │ │ │ │ ├── lint.go │ │ │ │ │ ├── lint16.go │ │ │ │ │ ├── lintutil │ │ │ │ │ │ └── util.go │ │ │ │ │ └── testutil │ │ │ │ │ │ └── util.go │ │ │ │ │ ├── simple │ │ │ │ │ ├── cmd │ │ │ │ │ │ └── gosimple │ │ │ │ │ │ │ └── gosimple.go │ │ │ │ │ ├── lint.go │ │ │ │ │ ├── lint17.go │ │ │ │ │ └── lint18.go │ │ │ │ │ ├── staticcheck │ │ │ │ │ ├── cmd │ │ │ │ │ │ └── staticcheck │ │ │ │ │ │ │ └── staticcheck.go │ │ │ │ │ └── lint.go │ │ │ │ │ └── unused │ │ │ │ │ ├── cmd │ │ │ │ │ └── unused │ │ │ │ │ │ └── main.go │ │ │ │ │ └── unused.go │ │ │ ├── template │ │ │ │ ├── LICENSE │ │ │ │ ├── doc.go │ │ │ │ ├── exec.go │ │ │ │ ├── funcs.go │ │ │ │ ├── helper.go │ │ │ │ ├── parse │ │ │ │ │ ├── lex.go │ │ │ │ │ ├── node.go │ │ │ │ │ └── parse.go │ │ │ │ └── template.go │ │ │ └── units │ │ │ │ ├── COPYING │ │ │ │ ├── bytes.go │ │ │ │ ├── doc.go │ │ │ │ ├── si.go │ │ │ │ └── util.go │ │ ├── google │ │ │ └── shlex │ │ │ │ ├── COPYING │ │ │ │ └── shlex.go │ │ └── stretchr │ │ │ └── testify │ │ │ ├── assert │ │ │ ├── LICENCE.txt │ │ │ ├── LICENSE │ │ │ ├── assertion_forward.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ └── http_assertions.go │ │ │ └── vendor │ │ │ └── github.com │ │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ └── spew │ │ │ │ ├── LICENCE.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── format.go │ │ │ │ └── spew.go │ │ │ └── pmezard │ │ │ └── go-difflib │ │ │ └── difflib │ │ │ ├── LICENCE.txt │ │ │ ├── LICENSE │ │ │ └── difflib.go │ │ └── gopkg.in │ │ └── alecthomas │ │ └── kingpin.v2 │ │ ├── COPYING │ │ ├── actions.go │ │ ├── app.go │ │ ├── args.go │ │ ├── cmd.go │ │ ├── cmd │ │ └── genvalues │ │ │ └── main.go │ │ ├── completions.go │ │ ├── doc.go │ │ ├── envar.go │ │ ├── flags.go │ │ ├── global.go │ │ ├── guesswidth.go │ │ ├── guesswidth_unix.go │ │ ├── model.go │ │ ├── parser.go │ │ ├── parsers.go │ │ ├── templates.go │ │ ├── usage.go │ │ ├── values.go │ │ └── values_generated.go ├── metalinter.go └── metalinter_test.go ├── gosimple ├── gosimple.go └── gosimple_test.go ├── gostaticcheck ├── gostaticcheck.go └── gostaticcheck_test.go ├── govet ├── govet.go └── govet_test.go ├── lint.go ├── lint_test.go ├── skip.go ├── structcheck ├── structcheck.go └── structcheck_test.go ├── testcovered.sh ├── testutil └── testutil.go ├── unused.go └── varcheck ├── varcheck.go └── varcheck_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/README.md -------------------------------------------------------------------------------- /aligncheck/aligncheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/aligncheck/aligncheck.go -------------------------------------------------------------------------------- /aligncheck/aligncheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/aligncheck/aligncheck_test.go -------------------------------------------------------------------------------- /checkers/checkers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/checkers/checkers.go -------------------------------------------------------------------------------- /dupl/dupl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/dupl/dupl.go -------------------------------------------------------------------------------- /dupl/dupl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/dupl/dupl_test.go -------------------------------------------------------------------------------- /errcheck/errcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/errcheck/errcheck.go -------------------------------------------------------------------------------- /errcheck/errcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/errcheck/errcheck_test.go -------------------------------------------------------------------------------- /gofmt/gofmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gofmt/gofmt.go -------------------------------------------------------------------------------- /gofmt/gofmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gofmt/gofmt_test.go -------------------------------------------------------------------------------- /golint/golint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/golint/golint.go -------------------------------------------------------------------------------- /golint/golint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/golint/golint_test.go -------------------------------------------------------------------------------- /gometalinter/_vendored/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | pkg/ 3 | -------------------------------------------------------------------------------- /gometalinter/_vendored/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/manifest -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/COPYING -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/aggregate.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/checkstyle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/checkstyle.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/regressiontests/support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/regressiontests/support.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/core/analyzer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/core/analyzer.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/core/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/core/helpers.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/core/issue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/core/issue.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/core/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/core/select.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/filelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/filelist.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/output/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/output/formatter.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rulelist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rulelist.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/bind.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/errors.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/fileperms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/fileperms.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/hardcoded_credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/hardcoded_credentials.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/httpoxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/httpoxy.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/rand.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/rsa.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/sql.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/subproc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/subproc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/tempfiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/tempfiles.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/templates.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/tls.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/unsafe.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/weakcrypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/rules/weakcrypto.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/HewlettPackard/gas/tools.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/alecthomas/gocyclo/gocyclo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/alecthomas/gocyclo/gocyclo.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/case.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/cmd/misspell/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/cmd/misspell/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/mime.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/notwords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/notwords.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/replace.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/stringreplacer/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/stringreplacer/replace.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/url.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/words.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/client9/misspell/words.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/golang/lint/golint/golint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/golang/lint/golint/golint.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/golang/lint/golint/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/golang/lint/golint/import.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/golang/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/golang/lint/lint.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/gordonklaus/ineffassign/ineffassign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/gordonklaus/ineffassign/ineffassign.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/jgautheron/goconst/cmd/goconst/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/jgautheron/goconst/cmd/goconst/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/jgautheron/goconst/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/jgautheron/goconst/parser.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/jgautheron/goconst/visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/jgautheron/goconst/visitor.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/errcheck/internal/errcheck/errcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/errcheck/internal/errcheck/errcheck.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/errcheck/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/errcheck/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/go13.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/go14-15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/go14-15.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/go16.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/match.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/kisielk/gotool/tool.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mdempsky/unconvert/unconvert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mdempsky/unconvert/unconvert.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/job/buildtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/job/buildtree.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/job/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/job/parse.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/output/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/output/html.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/output/plumbing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/output/plumbing.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/output/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/output/text.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/suffixtree/dupl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/suffixtree/dupl.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/suffixtree/suffixtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/suffixtree/suffixtree.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/syntax/golang/golang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/syntax/golang/golang.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/syntax/syntax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mibk/dupl/syntax/syntax.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/cache.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/check.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/cmd/interfacer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/cmd/interfacer/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/generate/std/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/generate/std/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/internal/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/internal/util/util.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/std.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/std.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/mvdan/interfacer/types.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/opennota/check/cmd/aligncheck/aligncheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/opennota/check/cmd/aligncheck/aligncheck.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/opennota/check/cmd/structcheck/structcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/opennota/check/cmd/structcheck/structcheck.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/opennota/check/cmd/varcheck/varcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/opennota/check/cmd/varcheck/varcheck.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/tsenart/deadcode/deadcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/tsenart/deadcode/deadcode.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/cmd/lll/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/cmd/lll/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/lll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/lll.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/vendor/github.com/alexflint/go-arg/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/vendor/github.com/alexflint/go-arg/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/vendor/github.com/alexflint/go-arg/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/vendor/github.com/alexflint/go-arg/parse.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/vendor/github.com/alexflint/go-arg/scalar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/vendor/github.com/alexflint/go-arg/scalar.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/vendor/github.com/alexflint/go-arg/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/github.com/walle/lll/vendor/github.com/alexflint/go-arg/usage.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/gen/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/gen/code.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/gen/gen.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/triegen/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/triegen/compact.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/triegen/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/triegen/print.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/triegen/triegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/triegen/triegen.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/ucd/ucd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/internal/ucd/ucd.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/base.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/cldr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/cldr.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/collate.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/decode.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/makexml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/makexml.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/resolve.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/slice.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/unicode/cldr/xml.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/gen_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/gen_common.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/gen_trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/gen_trieval.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/kind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/kind_string.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/tables.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/cmd/goimports/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/cmd/goimports/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/cmd/goimports/goimports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/cmd/goimports/goimports.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/cmd/gotype/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/cmd/gotype/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/cmd/gotype/gotype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/cmd/gotype/gotype.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_amd64.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_amd64.s -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_gccgo.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_gccgo_c.c -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/popcnt_generic.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/sparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/sparse.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/container/intsets/util.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ast/astutil/enclosing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ast/astutil/enclosing.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ast/astutil/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ast/astutil/imports.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ast/astutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ast/astutil/util.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/allpackages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/allpackages.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/fakecontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/fakecontext.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/overlay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/overlay.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/tags.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/buildutil/util.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/bexport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/bexport.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/bimport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/bimport.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/exportdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/exportdata.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/gcimporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/gcimporter.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/setname15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/setname15.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/setname16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/gcimporter15/setname16.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/cgo.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/cgo_pkgconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/cgo_pkgconfig.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/go16.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/loader.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/loader/util.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/blockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/blockopt.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/builder.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/const.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/const15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/const15.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/create.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/dom.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/emit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/emit.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/func.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_darwin.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_freebsd.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_plan9.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_unix.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/external_windows.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/interp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/interp.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/map.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/ops.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/reflect.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/interp/value.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/lift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/lift.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/lvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/lvalue.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/methods.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/mode.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/print.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/sanity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/sanity.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/source.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/ssa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/ssa.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/ssautil/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/ssautil/load.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/ssautil/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/ssautil/switch.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/ssautil/visit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/ssautil/visit.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/testmain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/testmain.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/util.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/ssa/wrappers.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/types/typeutil/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/types/typeutil/imports.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/types/typeutil/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/types/typeutil/map.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/types/typeutil/methodsetcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/types/typeutil/methodsetcache.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/types/typeutil/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/go/types/typeutil/ui.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk_dirent_fileno.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk_dirent_fileno.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk_dirent_ino.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk_dirent_ino.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk_portable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk_portable.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fastwalk_unix.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/fix.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/imports.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/mkindex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/mkindex.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/mkstdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/mkstdlib.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/sortimports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/sortimports.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/zstdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/golang.org/x/tools/imports/zstdlib.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/lint/lint.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/lint/lint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/lint/lint16.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/lint/lintutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/lint/lintutil/util.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/lint/testutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/lint/testutil/util.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/simple/cmd/gosimple/gosimple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/simple/cmd/gosimple/gosimple.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/simple/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/simple/lint.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/simple/lint17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/simple/lint17.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/simple/lint18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/simple/lint18.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/staticcheck/cmd/staticcheck/staticcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/staticcheck/cmd/staticcheck/staticcheck.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/staticcheck/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/staticcheck/lint.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/unused/cmd/unused/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/unused/cmd/unused/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/unused/unused.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/gometalinter/vendor/src/honnef.co/go/unused/unused.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/template/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/template/LICENSE -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/template/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/template/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/template/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/template/exec.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/template/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/template/funcs.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/template/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/template/helper.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/template/parse/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/template/parse/lex.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/template/parse/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/template/parse/node.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/template/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/template/parse/parse.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/template/template.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/units/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/units/COPYING -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/units/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/units/bytes.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/units/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/units/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/units/si.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/units/si.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/alecthomas/units/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/alecthomas/units/util.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/google/shlex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/google/shlex/COPYING -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/google/shlex/shlex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/google/shlex/shlex.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/assert/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/assert/LICENCE.txt -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/assert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/assert/LICENSE -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/assert/assertion_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/assert/assertion_forward.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/LICENCE.txt -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/LICENSE -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib/LICENCE.txt -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib/LICENSE -------------------------------------------------------------------------------- /gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib/difflib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/github.com/stretchr/testify/vendor/github.com/pmezard/go-difflib/difflib/difflib.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/COPYING -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/actions.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/app.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/args.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/cmd.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/cmd/genvalues/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/cmd/genvalues/main.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/completions.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/doc.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/envar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/envar.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/flags.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/global.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/guesswidth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/guesswidth.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/guesswidth_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/guesswidth_unix.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/model.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/parser.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/parsers.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/templates.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/usage.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/values.go -------------------------------------------------------------------------------- /gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/values_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/_vendored/src/gopkg.in/alecthomas/kingpin.v2/values_generated.go -------------------------------------------------------------------------------- /gometalinter/metalinter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/metalinter.go -------------------------------------------------------------------------------- /gometalinter/metalinter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gometalinter/metalinter_test.go -------------------------------------------------------------------------------- /gosimple/gosimple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gosimple/gosimple.go -------------------------------------------------------------------------------- /gosimple/gosimple_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gosimple/gosimple_test.go -------------------------------------------------------------------------------- /gostaticcheck/gostaticcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gostaticcheck/gostaticcheck.go -------------------------------------------------------------------------------- /gostaticcheck/gostaticcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/gostaticcheck/gostaticcheck_test.go -------------------------------------------------------------------------------- /govet/govet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/govet/govet.go -------------------------------------------------------------------------------- /govet/govet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/govet/govet_test.go -------------------------------------------------------------------------------- /lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/lint.go -------------------------------------------------------------------------------- /lint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/lint_test.go -------------------------------------------------------------------------------- /skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/skip.go -------------------------------------------------------------------------------- /structcheck/structcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/structcheck/structcheck.go -------------------------------------------------------------------------------- /structcheck/structcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/structcheck/structcheck_test.go -------------------------------------------------------------------------------- /testcovered.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/testcovered.sh -------------------------------------------------------------------------------- /testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/testutil/testutil.go -------------------------------------------------------------------------------- /unused.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/unused.go -------------------------------------------------------------------------------- /varcheck/varcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/varcheck/varcheck.go -------------------------------------------------------------------------------- /varcheck/varcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surullabs/lint/HEAD/varcheck/varcheck_test.go --------------------------------------------------------------------------------