gobwas / glob

Go glob
MIT License
957 stars 64 forks source link

Case insensitive match? #37

Closed asmaloney closed 5 years ago

asmaloney commented 5 years ago

I asked in the lefthook project about case insensitivity and was pointed here.

Is it possible to do a case insensitive match?

calmh commented 5 years ago

It's easy to case fold / lowercase the pattern and match string before matching.

asmaloney commented 5 years ago

Ah, ok. So it's not supported in the match string somehow - it would require code changes to lefthook.

Thanks!