mirror of
https://github.com/github/codeql.git
synced 2025-12-28 14:46:33 +01:00
Tag the successfully extracted files queries with `successfully-extracted-files` to make them easier to identify programmatically in a language-independent way. This follows the prior art for lines of code queries, which are tagged `lines-of-code`.
16 lines
410 B
Plaintext
16 lines
410 B
Plaintext
/**
|
|
* @name Successfully extracted files
|
|
* @description A list of all files in the source code directory that
|
|
* were extracted without encountering an error in the file.
|
|
* @kind diagnostic
|
|
* @id java/diagnostics/successfully-extracted-files
|
|
* @tags successfully-extracted-files
|
|
*/
|
|
|
|
import java
|
|
import DiagnosticsReporting
|
|
|
|
from CompilationUnit f
|
|
where successfullyExtracted(f)
|
|
select f, ""
|