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

adding exclude feature #258

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

Conversation

MiguelAPerez
Copy link

@MiguelAPerez MiguelAPerez commented Jan 18, 2023

Description

While using the available includes features some limitations were found when trying to exclude patterns (due to glob). For example when using ! on a character group, each letter is ignored instead of the group:

"include": [
        "sub-projects/![FooProject]*/composer.json",
],

This will exclude sub-project/F*, sub-project/o*, sub-project/o*, sub-project/P*, etc from being processed. This issue also causes significant toil when excluding multiple paths.

Note: Different variations of using ! has been considered but non has work so far

What’s The Change ?

To get around this and not change how includes works, excludes removed patterns and/or files from being processed.

"include": [
        "sub-projects/*/composer.json"
],
"exclude": [
        "sub-projects/Foo*/composer.json"
],

@MiguelAPerez MiguelAPerez marked this pull request as ready for review January 19, 2023 00:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant