From 3e4c70220dd6aab46c477052727be9a46cc9c9c0 Mon Sep 17 00:00:00 2001 From: andy Date: Mon, 3 May 2021 00:06:01 +0200 Subject: [PATCH] Remove ignore case directive from go deps exclude regex --- pkg/deps/golang.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/deps/golang.go b/pkg/deps/golang.go index 7c1ffe8c..f45dbac2 100644 --- a/pkg/deps/golang.go +++ b/pkg/deps/golang.go @@ -11,7 +11,7 @@ import ( "github.com/alecthomas/chroma/lexers/g" ) -var goExcludeRegex = regexp.MustCompile(`(?i)^"fmt"$`) +var goExcludeRegex = regexp.MustCompile(`^"fmt"$`) // StateGo is a token parsing state. type StateGo int