-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed info plugin's exclusion logic (#6874)
Added more information to platform file Added processed directory indicator Changed slash removal in resolved patterns Changed regex match function to search to support subprojects Constrained dynamic patterns to the root Reverted build assets gathering dc808ca Reverted info.gitignore file 79129d5
- Loading branch information
1 parent
f325238
commit 2d39824
Showing
7 changed files
with
169 additions
and
157 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
def get_exclusion_patterns(): | ||
""" | ||
Regex patterns, which will be compared against directory and file names | ||
case-sensitively. https://docs.python.org/3/library/re.html#re.search is the | ||
matching function and scans the whole string to find any pattern match. Used | ||
with the https://pypi.org/project/regex/ module. | ||
Additional remarks for pattern creation: | ||
- The compared paths will be always in POSIX format. | ||
- Each directory path will have a / at the end to allow to distinguish them | ||
from files. | ||
- Patterns for dynamic or custom paths like Virtual Environments (venv) or | ||
build site directories are created during plugin runtime. | ||
""" | ||
return [ | ||
r"/__pycache__/", # Python cache directory | ||
|
||
r"/\.DS_Store$", # macOS | ||
|
||
r"/[^/]+\.zip$", # Generated files and folders | ||
|
||
r"/[^/]*\.cache($|/)", # .cache files and folders | ||
|
||
r"/\.vscode/", # Common autogenerated IDE directories | ||
r"/\.vs/", | ||
r"/\.idea/", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
def get_exclusion_patterns(): | ||
""" | ||
Regex patterns, which will be compared against directory and file names | ||
case-sensitively. https://docs.python.org/3/library/re.html#re.search is the | ||
matching function and scans the whole string to find any pattern match. Used | ||
with the https://pypi.org/project/regex/ module. | ||
Additional remarks for pattern creation: | ||
- The compared paths will be always in POSIX format. | ||
- Each directory path will have a / at the end to allow to distinguish them | ||
from files. | ||
- Patterns for dynamic or custom paths like Virtual Environments (venv) or | ||
build site directories are created during plugin runtime. | ||
""" | ||
return [ | ||
r"/__pycache__/", # Python cache directory | ||
|
||
r"/\.DS_Store$", # macOS | ||
|
||
r"/[^/]+\.zip$", # Generated files and folders | ||
|
||
r"/[^/]*\.cache($|/)", # .cache files and folders | ||
|
||
r"/\.vscode/", # Common autogenerated IDE directories | ||
r"/\.vs/", | ||
r"/\.idea/", | ||
] |
Oops, something went wrong.