浏览代码

lint: fix local-prefixes for goimports (#5453)

Fix local-prefixes on linters imports then resolved imports to be as expected

Signed-off-by: Ken Sipe <[email protected]>
Ken Sipe 3 年之前
父节点
当前提交
1b71e3efb3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/watch/watcher_naive.go

+ 1 - 1
pkg/watch/watcher_naive.go

@@ -12,8 +12,8 @@ import (
 	"strings"
 	"strings"
 
 
 	"github.com/pkg/errors"
 	"github.com/pkg/errors"
-	"github.com/tilt-dev/fsnotify"
 
 
+	"github.com/tilt-dev/fsnotify"
 	"github.com/tilt-dev/tilt/internal/ospath"
 	"github.com/tilt-dev/tilt/internal/ospath"
 	"github.com/tilt-dev/tilt/pkg/logger"
 	"github.com/tilt-dev/tilt/pkg/logger"
 )
 )