0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 02:31:10 +00:00

add tools folder

This commit is contained in:
Pavel Boldyrev 2021-09-08 22:14:26 -04:00
parent 5b2bf4ea2d
commit b391a8cecf
No known key found for this signature in database
GPG Key ID: 9A3B05A2B8921AD9
3 changed files with 1553 additions and 0 deletions

13
tools/go.mod Normal file
View File

@ -0,0 +1,13 @@
module github.com/bpg/terraform-provider-proxmox/tools
go 1.16
require (
github.com/bflad/tfproviderdocs v0.9.1
github.com/client9/misspell v0.3.4
github.com/golangci/golangci-lint v1.42.1
github.com/hashicorp/go-changelog v0.0.0-20201005170154-56335215ce3a
github.com/katbyte/terrafmt v0.3.0
github.com/pavius/impi v0.0.3
github.com/terraform-linters/tflint v0.30.0
)

1527
tools/go.sum Normal file

File diff suppressed because it is too large Load Diff

13
tools/main.go Normal file
View File

@ -0,0 +1,13 @@
// +build tools
package main
import (
_ "github.com/bflad/tfproviderdocs"
_ "github.com/client9/misspell/cmd/misspell"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/hashicorp/go-changelog/cmd/changelog-build"
_ "github.com/katbyte/terrafmt"
_ "github.com/pavius/impi/cmd/impi"
_ "github.com/terraform-linters/tflint"
)