mirror of
https://github.com/github/codeql.git
synced 2026-03-02 05:43:54 +01:00
14 lines
329 B
Plaintext
14 lines
329 B
Plaintext
/**
|
|
* @name Extracted files
|
|
* @description Lists all files in the source code directory that were extracted.
|
|
* @kind diagnostic
|
|
* @id swift/diagnostics/successfully-extracted-files
|
|
* @tags successfully-extracted-files
|
|
*/
|
|
|
|
import swift
|
|
|
|
from File f
|
|
where exists(f.getRelativePath())
|
|
select f, "File successfully extracted."
|