Skip to content

Commit e53b441

Browse files
committed
fix(require-jsdoc): report missing blocks to next line of function with explicit column, but only as far as needed (not as far as first line's column)
1 parent b65fb3b commit e53b441

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rules/requireJsdoc.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ export default {
325325
} = node.loc;
326326
const loc = {
327327
end: {
328-
column: start.column,
328+
column: 0,
329329
line: start.line + 1,
330330
},
331331
start: node.loc.start,

0 commit comments

Comments
 (0)