We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e1c0ec commit b396444Copy full SHA for b396444
src/linter/reporters/github.mjs
@@ -18,7 +18,7 @@ export default issue => {
18
19
(actions[issue.level] || core.notice)(issue.message, {
20
file: issue.location.path,
21
- startLine: issue.location.position.start.line,
22
- endLine: issue.location.position.end.line,
+ startLine: issue.location.position?.start.line,
+ endLine: issue.location.position?.end.line,
23
});
24
};
0 commit comments