mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-18 23:06:10 -05:00
* fix: Switch to proper go tools mechanism. * fix: Add missing changes of website-lint github action. * fix: Re-add some commands to make setup. * docs: Fix service markdown file. * fix(deps): Update golangci-lint version to match the one used in github action. * fix: Add missing entry to go.sum
11 lines
261 B
Go
11 lines
261 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/client9/misspell/cmd/misspell"
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs"
|
|
_ "github.com/katbyte/terrafmt"
|
|
)
|