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 31b8913 commit a7873f9Copy full SHA for a7873f9
1 file changed
ql/src/queries/summary/NumberOfFilesExtractedWithErrors.ql
@@ -0,0 +1,13 @@
1
+/**
2
+ * @id rb/summary/number-of-files-extracted-with-errors
3
+ * @name Total number of files that were extracted with errors
4
+ * @description The total number of Ruby code files that we extracted, but where
5
+ * at least one extraction error occurred in the process.
6
+ * @kind metric
7
+ * @tags summary
8
+ */
9
+
10
+import ruby
11
+import codeql_ruby.Diagnostics
12
13
+select count(File f | exists(ExtractionError e | e.getLocation().getFile() = f))
0 commit comments