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 e7285ba commit 804198cCopy full SHA for 804198c
1 file changed
ql/src/queries/summary/NumberOfSuccesfullyExtractedFiles.ql
@@ -0,0 +1,13 @@
1
+/**
2
+ * @id rb/summary/number-of-successfully-extracted-files
3
+ * @name Total number of files that were extracted without error.
4
+ * @description The total number of Ruby code files that we extracted without
5
+ * encountering any extraction errors
6
+ * @kind metric
7
+ * @tags summary
8
+ */
9
+
10
+import ruby
11
+import codeql_ruby.Diagnostics
12
13
+select count(File f | not exists(ExtractionError e | e.getLocation().getFile() = f))
0 commit comments