msft extractor queries

This commit is contained in:
Dilan Bhalla
2024-11-22 14:11:02 -08:00
parent 54d9eda50a
commit e3a04757d7
9 changed files with 155 additions and 0 deletions

View File

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