From 905f2e66f6140d5a4b5d47a3b4b7a1a057b85952 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 2 May 2025 22:00:45 -0700 Subject: [PATCH] tools: exclude deps/v8/tools from CodeQL scans This will remove three of the four "A parse error occurred" issues during JavaScript CodeQL scans. (The fourth occurrence is in our code base, although it might be a false positive. Someone can figure that one out sooner or later, but we certainly can bypass scanning V8 tools.) --- .github/codeql-config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/codeql-config.yml b/.github/codeql-config.yml index 0d324d49dc0689..4e81d7e041e68a 100644 --- a/.github/codeql-config.yml +++ b/.github/codeql-config.yml @@ -3,3 +3,4 @@ name: CodeQL config paths-ignore: - test - deps/v8/test + - deps/v8/tools