Files
codeql/go/ql/src/Diagnostics/SuccessfullyExtractedFiles.ql
2024-01-02 21:39:28 +00:00

14 lines
265 B
Plaintext

/**
* @id go/diagnostics/successfully-extracted-files
* @name Extracted files
* @description List all files that were extracted.
* @kind diagnostic
* @tags successfully-extracted-files
*/
import go
from File f
where exists(f.getRelativePath())
select f, ""