ide: use goimports instead of gofmt

Test Plan: changed import sorting and saved file. Imports were resorted.

X-Origin-Diff: phab/D413
GitOrigin-RevId: 72ce771a9724f62f839e44211ee5cd64c89c56d7
diff --git a/core/internal/storage/blockdev.go b/core/internal/storage/blockdev.go
index 8bdad12..da3dcfa 100644
--- a/core/internal/storage/blockdev.go
+++ b/core/internal/storage/blockdev.go
@@ -20,10 +20,11 @@
 	"encoding/binary"
 	"encoding/hex"
 	"fmt"
-	"git.monogon.dev/source/nexantic.git/core/pkg/devicemapper"
 	"os"
 	"syscall"
 
+	"git.monogon.dev/source/nexantic.git/core/pkg/devicemapper"
+
 	"golang.org/x/sys/unix"
 )
 
diff --git a/core/internal/storage/data.go b/core/internal/storage/data.go
index 2b2251a..99a49eb 100644
--- a/core/internal/storage/data.go
+++ b/core/internal/storage/data.go
@@ -24,9 +24,10 @@
 	"path/filepath"
 	"sync"
 
-	"git.monogon.dev/source/nexantic.git/core/pkg/tpm"
 	"go.uber.org/zap"
 	"golang.org/x/sys/unix"
+
+	"git.monogon.dev/source/nexantic.git/core/pkg/tpm"
 )
 
 const (
diff --git a/core/internal/storage/find.go b/core/internal/storage/find.go
index 0ba1ca0..1abf6c0 100644
--- a/core/internal/storage/find.go
+++ b/core/internal/storage/find.go
@@ -18,12 +18,13 @@
 
 import (
 	"fmt"
-	"git.monogon.dev/source/nexantic.git/core/pkg/sysfs"
 	"io/ioutil"
 	"os"
 	"path/filepath"
 	"strconv"
 
+	"git.monogon.dev/source/nexantic.git/core/pkg/sysfs"
+
 	"github.com/rekby/gpt"
 	"golang.org/x/sys/unix"
 )