Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show lines of code data in debug mode only #15874

Merged
merged 2 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cpp/ql/src/Summary/LinesOfUserCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @kind metric
* @tags summary
* lines-of-code
* debug
* @id cpp/summary/lines-of-user-code
*/

Expand Down
1 change: 1 addition & 0 deletions csharp/ql/src/Metrics/Summaries/LinesOfCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* @kind metric
* @tags summary
* lines-of-code
* debug
*/

import csharp
Expand Down
1 change: 1 addition & 0 deletions go/ql/src/Summary/LinesOfCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* @kind metric
* @tags summary
* lines-of-code
* debug
*/

import go
Expand Down
1 change: 1 addition & 0 deletions java/ql/src/Metrics/Summaries/LinesOfCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* @kind metric
* @tags summary
* lines-of-code
* debug
*/

import java
Expand Down
1 change: 1 addition & 0 deletions javascript/ql/src/Summary/LinesOfUserCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* @kind metric
* @tags summary
* lines-of-code
* debug
* @id js/summary/lines-of-user-code
*/

Expand Down
1 change: 1 addition & 0 deletions python/ql/src/Summary/LinesOfUserCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* @kind metric
* @tags summary
* lines-of-code
* debug
* @id py/summary/lines-of-user-code
*/

Expand Down
1 change: 1 addition & 0 deletions ql/ql/src/queries/summary/LinesOfCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* @kind metric
* @tags summary
* lines-of-code
* debug
*/

import ql
Expand Down
1 change: 1 addition & 0 deletions ql/ql/src/queries/summary/LinesOfUserCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* query counts the lines of code, excluding whitespace or comments.
* @kind metric
* @tags summary
* debug
*/

import ql
Expand Down
1 change: 1 addition & 0 deletions ruby/ql/src/queries/summary/LinesOfCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* @kind metric
* @tags summary
* lines-of-code
* debug
*/

import codeql.ruby.AST
Expand Down
1 change: 1 addition & 0 deletions ruby/ql/src/queries/summary/LinesOfUserCode.ql
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* query counts the lines of code, excluding whitespace or comments.
* @kind metric
* @tags summary
* debug
*/

import codeql.ruby.AST
Expand Down
1 change: 1 addition & 0 deletions swift/ql/src/diagnostics/SuccessfullyExtractedLines.ql
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @kind metric
* @id swift/diagnostics/successfully-extracted-lines
* @tags summary
* debug
*/

import swift
Expand Down
Loading