-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
13 additions
and
8 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 |
---|---|---|
@@ -1,17 +1,19 @@ | ||
# Comments supported | ||
|
||
# Relative paths supported (starting with .\) | ||
.\Docs\Help\Find-Secret.md | ||
.\Source\config.json | ||
./Docs/Help/Find-Secret.md | ||
./Source/config.json | ||
|
||
# Wildcards supported. All files within this and subfolders will be excluded. | ||
.\bin\* | ||
./bin/* | ||
|
||
# Paths to files. All matches in these files will be excluded | ||
.\Tests\RegexPatternTests\TestCases.json | ||
C:\MyRepo\PSSecretScanner\README.md | ||
./Tests/RegexPatternTests/TestCases.json | ||
C:/MyRepo/PSSecretScanner/README.md | ||
|
||
# Any directory separator character should work (Linux and Windows) | ||
.\README.md | ||
|
||
# Patterns on specific lines supported in the format | ||
# <path\to\file>;<line number>;<pattern> | ||
.\ExcludeList.csv;1;"C:\BicepLab\template.json;51;-----BEGIN RSA PRIVATE KEY-----" | ||
C:\MyRepo\PSSecretScanner\Docs\Help\Find-Secret.md;51;"C:\MyFiles\template.json;51;-----BEGIN RSA PRIVATE KEY-----" | ||
# <path/to/file>;<line number>;<pattern> | ||
C:/MyRepo/PSSecretScanner/Docs/Help/Find-Secret.md;51;"C:\MyFiles\template.json;51;-----BEGIN RSA PRIVATE KEY-----" |
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