Fixing some golint issues on the new validate command
This commit is contained in:
parent
d3daf3e917
commit
1628f19bc1
|
@ -2,8 +2,9 @@ package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/hashicorp/terraform/config"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
|
"github.com/hashicorp/terraform/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ValidateCommand is a Command implementation that validates the terraform files
|
// ValidateCommand is a Command implementation that validates the terraform files
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
package command
|
package command
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/mitchellh/cli"
|
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/mitchellh/cli"
|
||||||
)
|
)
|
||||||
|
|
||||||
func setupTest(fixturepath string) (*cli.MockUi, int) {
|
func setupTest(fixturepath string) (*cli.MockUi, int) {
|
||||||
|
|
Loading…
Reference in New Issue