From 1b71e3efb3f94ad61ed92eff7169d4476fadacaa Mon Sep 17 00:00:00 2001 From: Ken Sipe Date: Tue, 8 Feb 2022 08:39:42 -0600 Subject: [PATCH] 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 --- pkg/watch/watcher_naive.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/watch/watcher_naive.go b/pkg/watch/watcher_naive.go index 685bc4bec..50c7fb7ba 100644 --- a/pkg/watch/watcher_naive.go +++ b/pkg/watch/watcher_naive.go @@ -12,8 +12,8 @@ import ( "strings" "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/pkg/logger" )