-
Notifications
You must be signed in to change notification settings - Fork 870
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create file to exclude test and report folder from CodeQL scanning.
- Loading branch information
1 parent
d5cf2a9
commit 0fd0ef6
Showing
1 changed file
with
16 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,16 @@ | ||
path_classifiers: | ||
test: | ||
# Note: use only forward slash / as a path separator. | ||
# * Matches any sequence of characters except a forward slash. | ||
# ** Matches any sequence of characters, including a forward slash. | ||
# This wildcard must either be surrounded by forward slash symbols, or used as the first segment of a path. | ||
# It matches zero or more whole directory segments. There is no need to use a wildcard at the end of a directory path because all sub-directories are automatically matched. | ||
# That is, /anything/ matches the anything directory and all its subdirectories. | ||
# Always enclose the expression in double quotes if it includes *. | ||
- src/Test | ||
|
||
# The default behavior is to tag all files created during the | ||
# build as `generated`. Results are hidden for generated code. You can tag | ||
# further files as being generated by adding them to the `generated` section. | ||
generated: | ||
- _reports |