-
Notifications
You must be signed in to change notification settings - Fork 927
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
417 changed files
with
37 additions
and
172,746 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,6 @@ _testmain.go | |
bee | ||
*.exe~ | ||
.goxc.local.json | ||
|
||
# go mod | ||
go.sum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,11 @@ | ||
language: go | ||
go: | ||
- 1.10.3 | ||
- "1.12.x" | ||
install: | ||
- export GO111MODULE=on | ||
- export PATH=$PATH:$HOME/gopath/bin | ||
- go get -u github.com/opennota/check/cmd/structcheck | ||
- go get -u honnef.co/go/tools/cmd/gosimple | ||
- go get -u honnef.co/go/tools/cmd/staticcheck | ||
- go get -u honnef.co/go/tools/cmd/unused | ||
- go get -u github.com/mdempsky/unconvert | ||
- go get -u github.com/gordonklaus/ineffassign | ||
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.1 | ||
|
||
script: | ||
- find . ! \( -path './vendor' -prune \) -type f -name '*.go' -print0 | xargs -0 gofmt -l -s | ||
- go vet $(go list ./... | grep -v /vendor/) | ||
- structcheck $(go list ./... | grep -v /vendor/) | ||
- gosimple -ignore "$(cat gosimple.ignore)" $(go list ./... | grep -v /vendor/) | ||
- staticcheck -ignore "$(cat staticcheck.ignore)" $(go list ./... | grep -v /vendor/) | ||
- unused $(go list ./... | grep -v /vendor/) | ||
- unconvert $(go list ./... | grep -v /vendor/) | ||
- ineffassign . | ||
- go mod download | ||
- golangci-lint run -D errcheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module github.com/beego/bee | ||
|
||
go 1.12 | ||
|
||
require ( | ||
github.com/astaxie/beego v1.10.0 | ||
github.com/fsnotify/fsnotify v1.4.7 | ||
github.com/go-delve/delve v1.3.2 | ||
github.com/go-sql-driver/mysql v1.2.1-0.20160113114805-6fd058ce0d6b | ||
github.com/gorilla/websocket v1.1.1-0.20170302224613-b258b4fadb57 | ||
github.com/lib/pq v0.0.0-20160806144029-80f8150043c8 | ||
github.com/peterh/liner v1.1.0 // indirect | ||
github.com/rogpeppe/go-internal v1.5.2 // indirect | ||
golang.org/x/mod v0.2.0 // indirect | ||
golang.org/x/tools v0.0.0-20200119215504-eb0d8dd85bcc // indirect | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect | ||
gopkg.in/yaml.v2 v2.2.1 | ||
honnef.co/go/tools v0.0.1-2019.2.3 // indirect | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.