From 7a4adf2f36eb70051edff100117b17ae210fbee8 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 7 Jul 2017 07:31:05 -0700 Subject: [PATCH] lib: normalize indentation in parentheses In anticipation of stricter indentation linting, normalize indentation of code in parentheses. --- lib/_tls_legacy.js | 11 ++++++----- lib/readline.js | 3 +-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/_tls_legacy.js b/lib/_tls_legacy.js index c00e15a1b7ec24..3b4566b2feadd8 100644 --- a/lib/_tls_legacy.js +++ b/lib/_tls_legacy.js @@ -741,11 +741,12 @@ function SecurePair(context, isServer, requestCert, rejectUnauthorized, this._rejectUnauthorized = rejectUnauthorized ? true : false; this._requestCert = requestCert ? true : false; - this.ssl = new Connection(this.credentials.context, - this._isServer ? true : false, - this._isServer ? this._requestCert : - options.servername, - this._rejectUnauthorized); + this.ssl = new Connection( + this.credentials.context, + this._isServer ? true : false, + this._isServer ? this._requestCert : options.servername, + this._rejectUnauthorized + ); if (this._isServer) { this.ssl.onhandshakestart = () => onhandshakestart.call(this); diff --git a/lib/readline.js b/lib/readline.js index 00bbae758ca899..867eefc4604ec3 100644 --- a/lib/readline.js +++ b/lib/readline.js @@ -522,8 +522,7 @@ function handleGroup(self, group, width, maxColumns) { var item = group[idx]; self._writeToOutput(item); if (col < maxColumns - 1) { - for (var s = 0, itemLen = item.length; s < width - itemLen; - s++) { + for (var s = 0, itemLen = item.length; s < width - itemLen; s++) { self._writeToOutput(' '); } }