mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
15 lines
294 B
Plaintext
15 lines
294 B
Plaintext
/**
|
|
* @name DOM value references
|
|
* @description The number of references to a DOM value.
|
|
* @kind metric
|
|
* @metricType project
|
|
* @metricAggregate sum
|
|
* @tags meta
|
|
* @id js/meta/dom-value-refs
|
|
*/
|
|
|
|
import javascript
|
|
import CallGraphQuality
|
|
|
|
select projectRoot(), count(DOM::domValueRef())
|