replace dep with go mod (#3907)

Replace sha1sum with jack's gosum and get rid of
vendor-deps.
Also don't compute hash on vendor/ contents.
Instead hash go.sum.

Disable unconvert lint check. It does not
work very well with go mod.

Remove update_vendor_deps once and for all.

Upgrade to go 1.12

Closes: #3919 #3630
This commit is contained in:
Alessio Treglia
2019-03-18 13:45:25 +01:00
committed by GitHub
parent 5f92fef4b0
commit 6ce4d5efd1
20 changed files with 325 additions and 889 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
"Linters": {
"vet": "go tool vet -composites=false :PATH:LINE:MESSAGE"
},
"Enable": ["golint", "vet", "ineffassign", "unconvert", "misspell"],
"Enable": ["golint", "vet", "ineffassign", "misspell"],
"Deadline": "500s",
"Vendor": true,
"Cyclo": 11,