mirror of
https://github.com/github/codeql.git
synced 2026-04-04 14:48:20 +02: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())
|