From 792b340c12abbb010f0f2af7464c786698c00d75 Mon Sep 17 00:00:00 2001 From: Paul Roebuck Date: Sat, 28 Apr 2018 09:35:52 -0500 Subject: [PATCH] style(bin/options.js): Revert un-Prettier comment per Boneskull's request --- bin/options.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/options.js b/bin/options.js index 651fbf047c..60cbcd705e 100644 --- a/bin/options.js +++ b/bin/options.js @@ -30,7 +30,8 @@ function getOptions() { : process.argv[process.argv.indexOf('--opts') + 1]; try { - const opts = fs.readFileSync(optsPath, 'utf8') + const opts = fs + .readFileSync(optsPath, 'utf8') .replace(/\\\s/g, '%20') .split(/\s/) .filter(Boolean)