Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/CodeQL.yml
3274 views
1
path_classifiers:
2
test:
3
# Classify all files in the top-level directories test/ and testsuites/ as test code.
4
- test
5
# Classify all files with suffix `.test` as test code.
6
# Note: use only forward slash / as a path separator.
7
# * Matches any sequence of characters except a forward slash.
8
# ** Matches any sequence of characters, including a forward slash.
9
# This wildcard must either be surrounded by forward slash symbols, or used as the first segment of a path.
10
# 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.
11
# That is, /anything/ matches the anything directory and all its subdirectories.
12
# Always enclose the expression in double quotes if it includes *.
13
- "**/*.test.ts"
14
15
# The default behavior is to tag all files created during the
16
# build as `generated`. Results are hidden for generated code. You can tag
17
# further files as being generated by adding them to the `generated` section.
18
generated:
19
# generated code.
20
- out
21
- "out-build"
22
- "out-vscode"
23
- "**/out/**"
24
- ".build/distro/cli-patches/index.js"
25
26
# The default behavior is to tag library code as `library`. Results are hidden
27
# for library code. You can tag further files as being library code by adding them
28
# to the `library` section.
29
library:
30
- "**/node_modules/**"
31
32