New reference panel: Allow filtering with globbing (including negative filters)
Created by: mrnugget
Google CS allows filtering references with globbing and excluding files.
A nice and simple way to implement the same behaviour would be to use globbing including negative predicates to get the same functionality.
-
foo/bar/*matches all files starting withfoo/bar -
foo/bar/*.gomatches all files starting withfoo/barand ending in.go -
!*_test.gomatches all files that do not end in_test.go