We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53497f4 commit ce4e816Copy full SHA for ce4e816
1 file changed
docs/product/extensions/source_code_linker.md
@@ -41,12 +41,22 @@ The extension uses two main components to integrate with Bazel:
41
42
Produces JSON mapping file:
43
```json
44
-{
45
- "REQ_ID": [
46
- "github_link1",
47
- "github_link2" // If multiple code-links exist
48
- ]
49
-}
+[
+ {
+ "file": "src/implementation1.py",
+ "line": 3,
+ "tag":"# req-Id:",
+ "need": "TREQ_ID_1",
50
+ "full_line": "# req-Id: TREQ_ID_1"
51
+ },
52
53
+ "file": "src/implementation2.py",
54
55
56
57
58
59
+]
60
```
61
62
<br>
0 commit comments