Skip to content

Commit 26a6c35

Browse files
Trottaduh95
authored andcommitted
debugger: wrap lines longer than 80 chars
Wrap lines more than 80 chararcters long in inspect_repl.js so we can disable specific rules.
1 parent 18e4f40 commit 26a6c35

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/internal/inspector/inspect_repl.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,8 @@ function createRepl(inspector) {
10721072
.then(() => Debugger.setPauseOnExceptions({ state: 'none' }))
10731073
.then(() => Debugger.setAsyncCallStackDepth({ maxDepth: 0 }))
10741074
.then(() => Debugger.setBlackboxPatterns({ patterns: [] }))
1075-
.then(() => Debugger.setPauseOnExceptions({ state: pauseOnExceptionState }))
1075+
.then(() =>
1076+
Debugger.setPauseOnExceptions({ state: pauseOnExceptionState }))
10761077
.then(() => restoreBreakpoints())
10771078
.then(() => Runtime.runIfWaitingForDebugger());
10781079
}

0 commit comments

Comments
 (0)