-
Notifications
You must be signed in to change notification settings - Fork 0
/
.snyk
17 lines (17 loc) · 1.1 KB
/
.snyk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Snyk (https://snyk.io) policy file
---
exclude:
global:
# Exclude a single file. For example, - test.spec.js
- file_name.ext
# Exclude a single directory. For example, - src/lib
- log4shell-goof/log4shell-client/target/test-classes
- log4shell-goof/log4shell-server/target/test-classes
# Exclude any file with a specific extension in the specific directory. For example, - tests/.js
- directory_name/.ext
# Exclude files with a specific ending in any directory. For example, - “*.spec.js”
- "*.ending.ext"
# Exclude files in directories that have the same name with a different ending, like “test” and “tests”. The last character before the question mark is optional. For example, - tests?/
- directory_name?/
# Exclude all files and directories located within any specified folder within your Project. For example, directory_name/** matches and excludes all contents under any directory named directory_name. It is not constrained to the root level or the location of the .snyk file.
- directory_name/**