forked from abronan/todo-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alexandre Beslic <abeslic@abronan.com>
- Loading branch information
0 parents
commit 750a2a3
Showing
899 changed files
with
413,294 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
*.swp | ||
*# | ||
*~ | ||
.#* | ||
|
||
.DS_Store | ||
.vscode | ||
.idea | ||
|
||
todoapp |
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,29 @@ | ||
{ | ||
"Vendor": true, | ||
"Deadline": "2m", | ||
"Sort": [ | ||
"linter", | ||
"severity", | ||
"path", | ||
"line" | ||
], | ||
"Exclude": [ | ||
".*\\.pb\\.go", | ||
"fetch\\.go:.*::error: unrecognized printf verb 'r'" | ||
], | ||
"EnableGC": true, | ||
"Enable": [ | ||
"deadcode", | ||
"misspell", | ||
"structcheck", | ||
"unused", | ||
"varcheck", | ||
"staticcheck", | ||
"unconvert", | ||
"gofmt", | ||
"goimports", | ||
"golint", | ||
"ineffassign", | ||
"vet" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,78 @@ | ||
# Gopkg.toml example | ||
# | ||
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md | ||
# for detailed Gopkg.toml documentation. | ||
# | ||
# required = ["github.com/user/thing/cmd/thing"] | ||
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] | ||
# | ||
# [[constraint]] | ||
# name = "github.com/user/project" | ||
# version = "1.0.0" | ||
# | ||
# [[constraint]] | ||
# name = "github.com/user/project2" | ||
# branch = "dev" | ||
# source = "github.com/myfork/project2" | ||
# | ||
# [[override]] | ||
# name = "github.com/x/y" | ||
# version = "2.4.0" | ||
# | ||
# [prune] | ||
# non-go = false | ||
# go-tests = true | ||
# unused-packages = true | ||
|
||
[[constraint]] | ||
branch = "grpc_timestamp_support" | ||
name = "github.com/go-pg/pg" | ||
source = "https://github.com/abronan/pg.git" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/gogo/protobuf" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/golang/protobuf" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/grpc-ecosystem/go-grpc-middleware" | ||
|
||
[[constraint]] | ||
name = "github.com/grpc-ecosystem/go-grpc-prometheus" | ||
version = "1.1.0" | ||
|
||
[[constraint]] | ||
name = "github.com/grpc-ecosystem/grpc-gateway" | ||
version = "1.3.1" | ||
|
||
[[constraint]] | ||
name = "github.com/satori/go.uuid" | ||
version = "1.2.0" | ||
|
||
[[constraint]] | ||
name = "github.com/sirupsen/logrus" | ||
version = "1.0.5" | ||
|
||
[[constraint]] | ||
name = "github.com/urfave/cli" | ||
version = "1.20.0" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "golang.org/x/net" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "google.golang.org/genproto" | ||
|
||
[[constraint]] | ||
name = "google.golang.org/grpc" | ||
version = "1.11.1" | ||
|
||
[prune] | ||
go-tests = true | ||
unused-packages = true |
Oops, something went wrong.