mirror of
https://github.com/github/codeql.git
synced 2026-05-15 03:39:32 +02:00
The ones that no longer require points-to no longer import `LegacyPointsTo`. The ones that do use the specific `...MetricsWithPointsTo` classes that are applicable.
24 lines
785 B
Plaintext
24 lines
785 B
Plaintext
/**
|
|
* @name Total lines of user written Python code in the database
|
|
* @description The total number of lines of Python code from the source code directory,
|
|
* excluding auto-generated files. This query counts the lines of code, excluding
|
|
* whitespace or comments. Note: If external libraries are included in the codebase
|
|
* either in a checked-in virtual environment or as vendored code, that will currently
|
|
* be counted as user written code.
|
|
* @kind metric
|
|
* @tags summary
|
|
* lines-of-code
|
|
* debug
|
|
* @id py/summary/lines-of-user-code
|
|
*/
|
|
|
|
import python
|
|
import semmle.python.filters.GeneratedCode
|
|
|
|
select sum(ModuleMetrics m |
|
|
exists(m.getFile().getRelativePath()) and
|
|
not m.getFile() instanceof GeneratedFile
|
|
|
|
|
m.getNumberOfLinesOfCode()
|
|
)
|