We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9e4c0a commit a933f0dCopy full SHA for a933f0d
1 file changed
rust/ql/src/queries/diagnostics/ExtractedFiles.ql
@@ -0,0 +1,13 @@
1
+/**
2
+ * @name Extracted files
3
+ * @description Lists all files in the source code directory that were extracted.
4
+ * @kind diagnostic
5
+ * @id rust/diagnostics/successfully-extracted-files
6
+ * @tags successfully-extracted-files
7
+ */
8
+
9
+import rust
10
11
+from File f
12
+where exists(f.getRelativePath())
13
+select f, "File successfully extracted."
0 commit comments