Skip to content

Commit

Permalink
Merge pull request #331 from wakatime/feature/go-exclude-regex
Browse files Browse the repository at this point in the history
Remove ignore case directive from go deps exclude regex
  • Loading branch information
dron22 authored May 2, 2021
2 parents 11df311 + 3e4c702 commit 8a8112f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/deps/golang.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8a8112f

Please sign in to comment.