path_classifiers:1test:2# Classify all files in the top-level directories test/ and testsuites/ as test code.3- test4# Classify all files with suffix `.test` as test code.5# Note: use only forward slash / as a path separator.6# * Matches any sequence of characters except a forward slash.7# ** Matches any sequence of characters, including a forward slash.8# This wildcard must either be surrounded by forward slash symbols, or used as the first segment of a path.9# 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.10# That is, /anything/ matches the anything directory and all its subdirectories.11# Always enclose the expression in double quotes if it includes *.12- "**/*.test.ts"1314# The default behavior is to tag all files created during the15# build as `generated`. Results are hidden for generated code. You can tag16# further files as being generated by adding them to the `generated` section.17generated:18# generated code.19- out20- "out-build"21- "out-vscode"22- "**/out/**"23- ".build/distro/cli-patches/index.js"2425# The default behavior is to tag library code as `library`. Results are hidden26# for library code. You can tag further files as being library code by adding them27# to the `library` section.28library:29- "**/node_modules/**"303132