Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d223851 commit 54266ecCopy full SHA for 54266ec
1 file changed
ql/src/queries/diagnostics/FilesExtractedWithErrors.ql
@@ -0,0 +1,14 @@
1
+/**
2
+ * @name Files extracted with errors
3
+ * @description Lists files that were extracted, but may be incomplete due to
4
+ * extraction errors.
5
+ * @kind diagnostic
6
+ * @id rb/diagnostics/files-extracted-with-errors
7
+ */
8
+
9
+import ruby
10
+import codeql_ruby.Diagnostics
11
12
+from File f
13
+where exists(ExtractionError e | e.getLocation().getFile() = f)
14
+select f, ""
0 commit comments