Merge remote-tracking branch 'origin/main' into jb1/isLibraryFile-nomagic

This commit is contained in:
Josh Brown
2024-11-26 03:43:07 -08:00
9 changed files with 172 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/**
* @name Extraction errors msft
* @description List all extraction errors for files in the source code directory.
* @id js/extractor-error-msft
* @kind problem
* @tags security
* extraction
*/
import javascript
from Error error
where
exists(error.getFile().getRelativePath()) and
error.isFatal()
select error.getFile(), error.getMessage()