From 8539ff26ceba11e4c2aea0b4936793a51295c1ce Mon Sep 17 00:00:00 2001 From: William Entriken Date: Wed, 24 Oct 2018 22:30:36 -0400 Subject: [PATCH] less semicolons --- remix-tests/src/compiler.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/remix-tests/src/compiler.js b/remix-tests/src/compiler.js index 9a42bd2397..45a6004924 100644 --- a/remix-tests/src/compiler.js +++ b/remix-tests/src/compiler.js @@ -41,16 +41,16 @@ function compileFileOrFiles (filename, isDirectory, opts, cb) { fs.walkSync = function (start, callback) { fs.readdirSync(start).forEach(name => { if (name === 'node_modules') { - return; // hack + return // hack } - var abspath = path.join(start, name); + var abspath = path.join(start, name) if (fs.statSync(abspath).isDirectory()) { - fs.walkSync(abspath, callback); + fs.walkSync(abspath, callback) } else { - callback(abspath); + callback(abspath) } - }); - }; + }) + } fs.walkSync(filepath, foundpath => { // only process .sol files