mirror of
https://github.com/github/codeql.git
synced 2026-03-22 15:36:48 +01:00
15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
/**
|
|
* @name Modules
|
|
* @description The number of modules in the snapshot.
|
|
* @kind metric
|
|
* @metricType project
|
|
* @metricAggregate sum
|
|
* @tags meta
|
|
* @id js/meta/modules
|
|
*/
|
|
|
|
import javascript
|
|
import CallGraphQuality
|
|
|
|
select projectRoot(), count(Module mod)
|