Files
codeql/javascript/ql/src/Metrics/FLinesOfComment.ql
2021-03-25 15:12:09 +00:00

16 lines
413 B
Plaintext

/**
* @name Lines of comments in files
* @description Files with few lines of comment might not have sufficient documentation to make them understandable.
* @kind treemap
* @treemap.warnOn lowValues
* @metricType file
* @metricAggregate avg sum max
* @id js/lines-of-comments-in-files
* @tags documentation
*/
import javascript
from File f
select f, f.getNumberOfLinesOfComments() as n order by n desc