From bfc7bd38b1f665ef899a01417c166efd1520f668 Mon Sep 17 00:00:00 2001 From: Pawel Winogrodzki Date: Tue, 7 Jan 2025 14:53:37 -0800 Subject: [PATCH] Added CodeQL configuration. --- .CodeQL.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .CodeQL.yml diff --git a/.CodeQL.yml b/.CodeQL.yml new file mode 100644 index 00000000000..3710c697d95 --- /dev/null +++ b/.CodeQL.yml @@ -0,0 +1,29 @@ +path_classifiers: + library: + # Treat source files for all compiled languages in the specs directories + # as 3rd party library sources because they are not owned by us. + # + # Extensions from https://codeql.github.com/docs/codeql-overview/supported-languages-and-frameworks/. + - "SPECS*/**/*.c" + - "SPECS*/**/*.c++" + - "SPECS*/**/*.cc" + - "SPECS*/**/*.cpp" + - "SPECS*/**/*.cs" + - "SPECS*/**/*.cshtml" + - "SPECS*/**/*.csproj" + - "SPECS*/**/*.cts" + - "SPECS*/**/*.cxx" + - "SPECS*/**/*.go" + - "SPECS*/**/*.h" + - "SPECS*/**/*.h++" + - "SPECS*/**/*.hh" + - "SPECS*/**/*.hpp" + - "SPECS*/**/*.hxx" + - "SPECS*/**/*.java" + - "SPECS*/**/*.kt" + - "SPECS*/**/*.mts" + - "SPECS*/**/*.sln" + - "SPECS*/**/*.swift" + - "SPECS*/**/*.ts" + - "SPECS*/**/*.tsx" + - "SPECS*/**/*.xaml"