Skip to content

Commit ce4e816

Browse files
Change README
1 parent 53497f4 commit ce4e816

1 file changed

Lines changed: 16 additions & 6 deletions

File tree

docs/product/extensions/source_code_linker.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,22 @@ The extension uses two main components to integrate with Bazel:
4141

4242
Produces JSON mapping file:
4343
```json
44-
{
45-
"REQ_ID": [
46-
"github_link1",
47-
"github_link2" // If multiple code-links exist
48-
]
49-
}
44+
[
45+
{
46+
"file": "src/implementation1.py",
47+
"line": 3,
48+
"tag":"# req-Id:",
49+
"need": "TREQ_ID_1",
50+
"full_line": "# req-Id: TREQ_ID_1"
51+
},
52+
{
53+
"file": "src/implementation2.py",
54+
"line": 3,
55+
"tag":"# req-Id:",
56+
"need": "TREQ_ID_1",
57+
"full_line": "# req-Id: TREQ_ID_1"
58+
},
59+
]
5060
```
5161

5262
<br>

0 commit comments

Comments
 (0)