Skip to content

Commit 298cfb2

Browse files
committed
fixup
1 parent 697f7be commit 298cfb2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

to-rdjson.jq

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@ diagnostics: .warnings | map({
88
message: .description,
99
location: {
1010
"path": $ENV.DOCKER_FILE_PATH,
11-
"range": .location.ranges,
11+
"range": {
12+
"start": {
13+
"line": .location.ranges[].start.line
14+
},
15+
"end": {
16+
"line": .location.ranges[].end.line
17+
},
18+
},
1219
},
1320
severity: "WARNING",
1421
code: {

0 commit comments

Comments
 (0)