mirror of
https://github.com/github/codeql.git
synced 2026-05-06 06:05:19 +02:00
14 lines
265 B
Plaintext
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, ""
|