Skip to content

Commit

Permalink
Merge pull request #327 from Turbo87/template-lint
Browse files Browse the repository at this point in the history
TemplateLintResultParser: Fix off-by-one issue
  • Loading branch information
Turbo87 authored Sep 11, 2020
2 parents 8e71b2c + afc6e11 commit caf9dae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class TemplateLintResultParser {
else -> null
}

return JSLinterError(line, column, text, rule, highlightSeverity)
return JSLinterError(line, column + 1, text, rule, highlightSeverity)
}
}

Expand Down

0 comments on commit caf9dae

Please sign in to comment.