Skip to main content

Lines of Code

This topic provides a guide on how the Lines of Code metric is calculated on SEI.

The Lines of Code metric is a crucial indicator of developer productivity and codebase evolution over time.

This metric is pivotal in measuring a developer's contribution, quantified by the total lines of code added, deleted, or changed in the selected time period. This serves as an indicator of developer productivity.

According to industry standards, an ideal range for the LOC metric for an software engineer is between 125 and 185 lines of code per month. However, note that this range may vary depending on factors such as project complexity and coding conventions.

Scope of Measurement across different reports

The Lines of Code metric is measured across two types of reports on SEI: Trellis Reports and SCM Reports.

Trellis Reports

In Trellis Reports, the Lines of Code metric calculates the total number of lines of code contributed by an engineer within the selected time frame. The calculation includes the cumulative sum of lines of code added and lines of code changed by the respective engineer across commits.

The metric value in the trellis report is normalized to show the average number of lines of code contributed per month. This gives a comprehensive view of the volume of work a developer contributes to a project each month.

In the Raw Stats report, the metric displays the total number of lines of code contributed by the engineer within the selected time frame.

To learn more, go to Trellis Scores.

SCM Reports

The Lines of Code metric in SCM reports provides a more granular representation of a developer's contribution. The metric measures the total lines of code that are included in pull requests(For SCM PRs Report) and commits (For SCM Commits Reports). This includes:

  • Lines of Code Added: It measures the new lines of code a developer adds for an associated pull request or commit in the respective report (i.e., SCM Commit Report and SCM PRs Report).
  • Lines of Code Deleted: It measures the lines of code a developer deletes for an associated pull request.
  • Total Lines or Lines of Code Modified or Changed: It measures the total lines of code changed as a result of the addition or deletion of lines for an associated pull request or commit in the respective report.

To learn more, go to SCM Reports.

Scope of Measurement across different platforms

SEI measures the total lines of code that are included in pull requests (PRs) across various SCM tools such as GitHub, Bitbucket, GitLab, and Azure DevOps. The calculation process varies depending on the tool used.

GitHub, Bitbucket, and GitLab

  • Merged Pull Requests (PRs): SEI calculates the Lines of Code metric for merged PRs using the merge SHA (Commit ID). This approach ensures accuracy by considering the final state of the codebase after merging, which includes the cumulative data of all code modifications. This consists of total lines added, deleted, and files changed as part of the merge commit.

  • PRs in OPEN or CLOSED States: Lines of Code metrics for open and closed PRs are determined via the respective SCM tool's API. This includes the total count of lines added, deleted, and the number of files modifed in all the commits that make up the PR.

info

When using the Rebase and Merge strategy, the latest commit in the PR is recognized as the merge commit. This leads to incorrect calculations for the Lines of Code metric, as rebasing rewrites the commit history, which does not accurately reflect the actual changes made in the original commits and thus changes the count of lines added, deleted, or modified.

  • SCM PRs reports: Here the values for Lines Added, Lines Deleted, and Files Changed correspond to the lines of code added, deleted, and the respective files changed for the associated Pull Request. The Lines Changed field is calculated as the number of lines changed or modified, which is the summation of lines added and lines deleted as part of the associated pull request.

  • SCM Commits reports: Here the values for Lines Added represent the lines of code added as part of the associated Commit. The Total Lines field is calculated as the total number of lines changed, which is the summation of lines added and lines deleted as part of the associated commit.

info

For SCM reports, the values for lines of code added and deleted are the same as those received from the SCM tool for the associated Pull Request or Commit. These values are not calculated by SEI.

  • To receive the files changed data, make sure you have set the fetch_commit_files key in your integration configuration to Yes. This will enable SEI to retrieve the necessary data from the SCM tool.

  • For BitBucket Cloud and Server to recieve the data for Lines added and Lines deleted for the associated pull request or commit make sure you have set the fetch_commit_files key in your integration configuration to Yes. This will enable SEI to retrieve the necessary data from the SCM tool.

Azure DevOps

There are currently some known issues with all SCM reports for the Azure DevOps integrations. As a result, the data for SCM metrics such as Lines of Code and Files Changed may be displayed as either zero or incorrect. This issue will be fixed in future releases.

info

Commits encompassing more than 256 files are automatically excluded from the calculation.

Calculation example

Let's consider a scenario with multiple PRs and commits:

Developer A worked on 3 PRs last month on Github

  • PR #1 (Merged): This PR had two commits, with the merge commit resulting in 100 lines added and 50 lines deleted. Therefore, the total lines of code changed was 150.
  • PR #2 (Open): It consisted of four commits, adding a total of 150 lines and deleting 75. The total lines of code changed amounted to 225 lines.
  • PR #3 (Closed): This included one commit with 20 lines added and 10 deleted, making the total lines of code changed 30 lines.
Pull RequestPR StatusCommitNumber of Lines addedNumber of Lines deletedNumber of Lines changed
PR #1MergedMerge Commit+100-50150
PR #2OpenCommit #1+30-1040
PR #2OpenCommit #2+25025
PR #2OpenCommit #3+15-520
PR #2OpenCommit #4+80-60140
PR #3ClosedCommit #1+20-1030
info

For SCM reports, the values for lines of code added and deleted are the same as those received from the SCM tool for the associated Pull Request or Commit. These values are not calculated by SEI.

The calculations for Developer A in the SCM reports are:

SCM PR Reports

Associated PRLines AddedLines DeletedLines ChangedFiles Changed
PR #1100501504
PR #2150752256
PR #32010303

SCM Commits Report

Associated CommitLines AddedLines DeletedLines ChangedFiles Changed
Commit #1 (PR #1)100501504
Commit #1 (PR #2)3010402
Commit #2 (PR #2)250251
Commit #3 (PR #2)155201
Commit #4 (PR #2)80601405
Commit #1 (PR #3)155202