-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added exclusion logic for info plugin
- Loading branch information
1 parent
64a8b6a
commit 79129d5
Showing
4 changed files
with
224 additions
and
0 deletions.
There are no files selected for viewing
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,40 @@ | ||
# Custom .gitignore-like file | ||
# The difference is that those are https://docs.python.org/3/library/re.html | ||
# regex patterns, that will be compared against directory and file names | ||
# case-sensitively. | ||
|
||
# Additional info: | ||
# The paths will be always in POSIX format. | ||
# Each directory path will have a / at the end to make it easier to | ||
# distinguish them from files. | ||
|
||
|
||
# Patterns for dynamic or custom paths like Virtual Environments (venv) | ||
# or build site directories are created during plugin runtime. | ||
|
||
# --- | ||
|
||
# Byte-compiled / optimized / DLL files | ||
# Python cache directory | ||
.*__pycache__/ | ||
|
||
# macOS | ||
|
||
.*\.DS_Store | ||
|
||
# .dotfiles in the root directory | ||
|
||
^/\.[^/]+$ | ||
|
||
# Generated files and folders | ||
|
||
^/.*\.zip | ||
|
||
# Allow .github or .devcontainer directories | ||
# Exclude .cache files and folders | ||
# Exclude known IDE directories | ||
|
||
.*\.cache/? | ||
^/\.vscode/ | ||
^/\.vs/ | ||
^/\.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 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,40 @@ | ||
# Custom .gitignore-like file | ||
# The difference is that those are https://docs.python.org/3/library/re.html | ||
# regex patterns, that will be compared against directory and file names | ||
# case-sensitively. | ||
|
||
# Additional info: | ||
# The paths will be always in POSIX format. | ||
# Each directory path will have a / at the end to make it easier to | ||
# distinguish them from files. | ||
|
||
|
||
# Patterns for dynamic or custom paths like Virtual Environments (venv) | ||
# or build site directories are created during plugin runtime. | ||
|
||
# --- | ||
|
||
# Byte-compiled / optimized / DLL files | ||
# Python cache directory | ||
.*__pycache__/ | ||
|
||
# macOS | ||
|
||
.*\.DS_Store | ||
|
||
# .dotfiles in the root directory | ||
|
||
^/\.[^/]+$ | ||
|
||
# Generated files and folders | ||
|
||
^/.*\.zip | ||
|
||
# Allow .github or .devcontainer directories | ||
# Exclude .cache files and folders | ||
# Exclude known IDE directories | ||
|
||
.*\.cache/? | ||
^/\.vscode/ | ||
^/\.vs/ | ||
^/\.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