@@ -17,8 +17,8 @@ on the build agent. If no Go v1.11+ is present, fallback detection
17
17
strategy is performed.
18
18
19
19
Go detection is performed by parsing output from executing
20
- [ go list -mod=readonly -m -json all] ( 1 ) . To generate the graph, the command
21
- [ go mod graph] ( 2 ) is executed. This only adds edges between the components
20
+ [ go list -mod=readonly -m -json all] [ 1 ] . To generate the graph, the command
21
+ [ go mod graph] [ 2 ] is executed. This only adds edges between the components
22
22
that were already registered by ` go list ` .
23
23
24
24
## Fallback Detection strategy
@@ -44,7 +44,7 @@ strategy. The full graph is not detected.
44
44
45
45
Go detection is performed by only scanning the ` go.mod ` files. This
46
46
reduces over reporting dependencies. The ` go.mod ` file contains all
47
- dependencies, including transitive ones. [ ^ 3 ]
47
+ dependencies, including transitive ones. [ < sup >3</ sup > ] [ 3 ]
48
48
49
49
Similarly, no graph is generated.
50
50
@@ -160,7 +160,7 @@ manages external packages and dependencies.
160
160
### ` go.mod ` File
161
161
162
162
The ` go.mod ` file, short for "module file," is a fundamental component
163
- of Go's module system.[ ^ 4 ] It serves several crucial purposes:
163
+ of Go's module system.[ < sup >4</ sup > ] [ 4 ] It serves several crucial purposes:
164
164
165
165
1 . ** Module Definition** : The ` go.mod ` file defines the module name,
166
166
which uniquely identifies the project. The module name typically
@@ -206,7 +206,7 @@ of Go's module system.[^4] It serves several crucial purposes:
206
206
The `go.sum` file, short for "checksum file," is used for ensuring the
207
207
integrity and security of dependencies. It contains checksums
208
208
(cryptographic hashes) of specific versions of packages listed in the
209
- `go.mod` file.[^ 5] The `go.sum` file serves the following purposes:
209
+ `go.mod` file.[<sup>5</sup>][ 5] The `go.sum` file serves the following purposes:
210
210
211
211
1. **Cryptographic Verification**: When Go downloads a package
212
212
specified in the `go.mod` file, it verifies the downloaded
0 commit comments