golang / vuln
Duplication

Places in code with 6 or more lines that are exactly the same.

Intro
  • For duplication, we look at places in code where there are 6 or more lines of code that are exactly the same.
  • Before duplication is calculated, the code is cleaned to remove empty lines, comments, and frequently duplicated constructs such as imports.
  • You should aim at having as little as possible (<5%) of duplicated code as high-level of duplication can lead to maintenance difficulties, poor factoring, and logical contradictions.
Learn more...
Duplication Overall
  • 3% duplication:
    • 392 cleaned lines of cleaned code (without empty lines, comments, and frequently duplicated constructs such as imports)
    • 12 duplicated lines
  • 1 duplicates
system3% (12 lines)
Duplication per Extension
go4% (12 lines)
Duplication per Component (primary)
client5% (12 lines)
internal0% (0 lines)
internal/derrors0% (0 lines)
ROOT0% (0 lines)
osv0% (0 lines)
Longest Duplicates
The list of 1 longest duplicates.
See data for all 1 duplicate
Size#FoldersFilesLinesCode
6 x 2 client
client
client.go
client.go
117:124 (2%)
280:287 (2%)
view