Skip to content

Commit

Permalink
file regex should have $
Browse files Browse the repository at this point in the history
or unintentional will happen
  • Loading branch information
picasso250 authored Feb 12, 2021
1 parent ebe297c commit ef2e97e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ func init() {
}

var ignoredFilesRegExps = []string{
`.#(\w+).go`,
`.(\w+).go.swp`,
`(\w+).go~`,
`(\w+).tmp`,
`.#(\w+).go$`,
`.(\w+).go.swp$`,
`(\w+).go~$`,
`(\w+).tmp$`,
}

func main() {
Expand Down

0 comments on commit ef2e97e

Please sign in to comment.