mirror of
https://github.com/github/codeql.git
synced 2026-01-19 09:24:46 +01:00
This commit renames the files relating to the diagnostic query that produces information on the number of files extracted. The files have been renamed from "SuccessfullExtractedFiles.*" to "ExtractedFiles.*". All related tests and test files have been renamed too. The `@tags` and `@id` attributes of the queries have been left untouched, consistent with the `@tags` and `@id` for similar queries in other languages.
14 lines
303 B
Plaintext
14 lines
303 B
Plaintext
/**
|
|
* @name Extracted files
|
|
* @description Lists all files in the source code directory that were extracted.
|
|
* @kind diagnostic
|
|
* @id js/diagnostics/successfully-extracted-files
|
|
* @tags successfully-extracted-files
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from File f
|
|
where exists(f.getRelativePath())
|
|
select f, ""
|