File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ const getUtils = (
184
184
const classJsdocNode = getJSDocComment ( sourceCode , classNode ) ;
185
185
186
186
if ( classJsdocNode ) {
187
- const indent = _ . repeat ( ' ' , classJsdocNode . loc . start . column ) ;
187
+ const indent = ' ' . repeat ( classJsdocNode . loc . start . column ) ;
188
188
189
189
return parseComment ( classJsdocNode , indent ) ;
190
190
}
@@ -321,7 +321,7 @@ const iterateAllJsdocs = (iterator, ruleConfig) => {
321
321
return ;
322
322
}
323
323
324
- const indent = _ . repeat ( ' ' , comment . loc . start . column ) ;
324
+ const indent = ' ' . repeat ( comment . loc . start . column ) ;
325
325
const jsdoc = parseComment ( comment , indent ) ;
326
326
const settings = getSettings ( context ) ;
327
327
const report = makeReport ( context , comment ) ;
@@ -393,7 +393,7 @@ export default function iterateJsdoc (iterator, ruleConfig) {
393
393
return ;
394
394
}
395
395
396
- const indent = _ . repeat ( ' ' , jsdocNode . loc . start . column ) ;
396
+ const indent = ' ' . repeat ( jsdocNode . loc . start . column ) ;
397
397
398
398
const jsdoc = parseComment ( jsdocNode , indent ) ;
399
399
You can’t perform that action at this time.
0 commit comments