From 8010e6909286c62ff6feaf5459ea43ee251a7aa8 Mon Sep 17 00:00:00 2001 From: Matthew Somerville Date: Sun, 14 Jan 2018 20:51:20 +0000 Subject: [PATCH] Fix lint errors. --- gulpfile.babel.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index f999059..779779d 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -160,15 +160,15 @@ gulp.task("new-incident", (cb) => { }); function getPlatform(platform) { - switch (platform) { - case "win32": - case "win64": { - return "windows"; - } - default: { - return platform - } + switch (platform) { + case "win32": + case "win64": { + return "windows"; } + default: { + return platform; + } + } } function generateFrontMatter(frontMatter, answers) {