Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: Recommend using Regexp filters for add_group #1062

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Jul 5, 2023

  1. 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/}
    splattael committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    4bf967b View commit details
    Browse the repository at this point in the history