File tree Expand file tree Collapse file tree
lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-blockquote-indentation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ console.log( result );
115115 'severity': 2,
116116 'message': 'Remove 3 spaces between blockquote and content',
117117 'line': 4,
118- 'column': 6 ,
118+ 'column': 5 ,
119119 'nodeType': null,
120120 'source': '/**',
121121 'endLine': 13,
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ console.log( result );
4444 'severity': 2,
4545 'message': 'Remove 3 spaces between blockquote and content',
4646 'line': 4,
47- 'column': 6 ,
47+ 'column': 5 ,
4848 'nodeType': null,
4949 'source': '/**',
5050 'endLine': 13,
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ function main( context ) {
9191 msg = err . message ;
9292 loc = copyLocationInfo ( location ) ;
9393 loc . start . line = err . location . start . line + 1 ; // Note: we assume `/**` is on its own line
94- loc . start . column = err . location . start . column + 2 ; // Note: we assume that 1 space separates `*` from JSDoc description content (e.g., `* ## Beep`)
94+ loc . start . column = err . location . start . column + 1 ; // Note: we assume that 1 space separates `*` from JSDoc description content (e.g., `* ## Beep`)
9595 report ( msg , loc ) ;
9696 }
9797 } // end FUNCTION reportErrors()
You can’t perform that action at this time.
0 commit comments