From eb034dd81efbeb61c7378d085a4983a93ce45998 Mon Sep 17 00:00:00 2001 From: Paul Roebuck Date: Thu, 26 Apr 2018 10:24:21 -0500 Subject: [PATCH] style(bin/options.js): Turn off prettier for single line Prettier reformatting is just wrong here. fs.readFileSync() should **not** be split across multiple lines. --- bin/options.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/options.js b/bin/options.js index 651fbf047c..e70030227f 100644 --- a/bin/options.js +++ b/bin/options.js @@ -30,6 +30,7 @@ function getOptions() { : process.argv[process.argv.indexOf('--opts') + 1]; try { + // prettier-ignore const opts = fs.readFileSync(optsPath, 'utf8') .replace(/\\\s/g, '%20') .split(/\s/)