diff --git a/file.go b/file.go index 83e4b5bb..60428ba3 100644 --- a/file.go +++ b/file.go @@ -7,11 +7,6 @@ import ( "github.com/mattn/go-zglob" ) -var dirsToSkip = []string{ - ".git", - "node_modules", -} - func minTime(a, b time.Time) time.Time { if !a.IsZero() && a.Before(b) { return a