Skip to content

Commit

Permalink
Merge pull request #469 from dodona-edu/fix/shellcheck-fix-ii
Browse files Browse the repository at this point in the history
Revert to zero-based for annotations
  • Loading branch information
niknetniko authored Nov 27, 2023
2 parents ffe7870 + 8d554d1 commit 0feb5d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tested/languages/bash/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def run_shellcheck(
cols = 1
annotations.append(
AnnotateCode(
row=start_row + config.source_offset,
row=start_row + config.source_offset - 1,
rows=rows,
text=text,
externalUrl=external,
Expand Down

0 comments on commit 0feb5d9

Please sign in to comment.