diff options
| author | Joseph Richey <joerichey94@google.com> | 2018-02-08 01:08:10 -0800 |
|---|---|---|
| committer | Joseph Richey <joerichey94@google.com> | 2018-02-08 01:17:58 -0800 |
| commit | 04f027adbec863c1a8bc93d5f9ab08b36a420543 (patch) | |
| tree | 7eb95b0dfdaf473f275ffe00394c7b0ec43de659 /Gopkg.toml | |
| parent | 2951db0703f50c18a301b98df5b20c269fa97680 (diff) | |
dep: Setup Gopkg.toml
This change transitions to dep, sets up Gopkg.toml, and purnes the
maximum allowable number of files.
Diffstat (limited to 'Gopkg.toml')
| -rw-r--r-- | Gopkg.toml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Gopkg.toml b/Gopkg.toml new file mode 100644 index 0000000..bd585b3 --- /dev/null +++ b/Gopkg.toml @@ -0,0 +1,31 @@ +# 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 + + +[prune] + non-go = true + go-tests = true + unused-packages = true |