CodeQL.yml 1.4 KB

12345678910111213141516171819202122232425262728293031
  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. # The default behavior is to tag all files created during the
  15. # build as `generated`. Results are hidden for generated code. You can tag
  16. # further files as being generated by adding them to the `generated` section.
  17. generated:
  18. # generated code.
  19. - out
  20. - "out-build"
  21. - "out-vscode"
  22. - "**/out/**"
  23. - ".build/distro/cli-patches/index.js"
  24. # The default behavior is to tag library code as `library`. Results are hidden
  25. # for library code. You can tag further files as being library code by adding them
  26. # to the `library` section.
  27. library:
  28. - "**/node_modules/**"