You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
README: Recommend using Regexp filters for add_group
Using String filters can include wrong files to groups because it
matches if the string is contained within the path.
For example:
# This matches files like `./lib/foo.rb`
# but also `./app/models/library.rb'
add_group 'Libraries', 'lib'
# Prefer Regexp filter instead:
add_group 'Libraries', %r{^/lib/}
0 commit comments