-
Notifications
You must be signed in to change notification settings - Fork 64
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
4,595 changed files
with
276,484 additions
and
809,194 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,31 @@ | ||
issues: | ||
max-per-linter: 0 | ||
max-same-issues: 0 | ||
|
||
linters: | ||
disable-all: true | ||
enable: | ||
- deadcode | ||
- errcheck | ||
- gofmt | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- interfacer | ||
- nakedret | ||
- misspell | ||
- staticcheck | ||
- structcheck | ||
- typecheck | ||
- unused | ||
- unconvert | ||
- varcheck | ||
- vet | ||
- vetshadow | ||
|
||
linters-settings: | ||
errcheck: | ||
ignore: github.com/hashicorp/terraform/helper/schema:ForceNew|Set,fmt:.*,io:Close | ||
|
||
run: | ||
modules-download-mode: vendor |
This file was deleted.
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 |
---|---|---|
@@ -1,29 +1,28 @@ | ||
dist: trusty | ||
sudo: required | ||
services: | ||
- docker | ||
- docker | ||
language: go | ||
go: | ||
- "1.11.x" | ||
|
||
install: | ||
# This script is used by the Travis build to install a cookie for | ||
# go.googlesource.com so rate limits are higher when using `go get` to fetch | ||
# packages that live there. | ||
# See: https://github.com/golang/go/issues/12933 | ||
- bash scripts/gogetcookie.sh | ||
- make tools | ||
# This script is used by the Travis build to install a cookie for | ||
# go.googlesource.com so rate limits are higher when using `go get` to fetch | ||
# packages that live there. | ||
# See: https://github.com/golang/go/issues/12933 | ||
- bash scripts/gogetcookie.sh | ||
- make tools | ||
|
||
script: | ||
- make lint | ||
- make test | ||
- make vendor-status | ||
- make website-test | ||
- make test | ||
- make lint | ||
- make website-test | ||
|
||
branches: | ||
only: | ||
- master | ||
- master | ||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- go: tip | ||
- go: tip |
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,33 @@ | ||
module github.com/terraform-providers/terraform-provider-azurestack | ||
|
||
go 1.12 | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go v21.3.0+incompatible | ||
github.com/Azure/go-autorest v10.15.4+incompatible | ||
github.com/apparentlymart/go-cidr v1.0.0 // indirect | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/dnaeon/go-vcr v1.0.1 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 | ||
github.com/hashicorp/go-azure-helpers v0.0.0-20181211121309-38db96513363 | ||
github.com/hashicorp/go-getter v1.2.0 // indirect | ||
github.com/hashicorp/go-hclog v0.8.0 // indirect | ||
github.com/hashicorp/go-plugin v0.0.0-20190220160451-3f118e8ee104 // indirect | ||
github.com/hashicorp/go-uuid v1.0.1 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/hcl2 v0.0.0-20190305174554-fdf8e232b64f // indirect | ||
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect | ||
github.com/hashicorp/logutils v1.0.0 // indirect | ||
github.com/hashicorp/terraform v0.11.3 | ||
github.com/marstr/guid v0.0.0-20170427235115-8bdf7d1a087c // indirect | ||
github.com/mitchellh/cli v1.0.0 // indirect | ||
github.com/mitchellh/copystructure v1.0.0 // indirect | ||
github.com/mitchellh/hashstructure v1.0.0 // indirect | ||
github.com/satori/go.uuid v0.0.0-20160927100844-b061729afc07 // indirect | ||
github.com/terraform-providers/terraform-provider-azurerm v1.15.0 | ||
github.com/zclconf/go-cty v0.0.0-20190212192503-19dda139b164 // indirect | ||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 | ||
golang.org/x/net v0.0.0-20190311183353-d8887717615a // indirect | ||
golang.org/x/sys v0.0.0-20190312061237-fead79001313 // indirect | ||
) |
Oops, something went wrong.