Fix lint errors.

This commit is contained in:
Matthew Somerville 2018-01-14 20:51:20 +00:00 committed by steveoh
parent 7df3bec8fe
commit 8010e69092

View File

@ -160,15 +160,15 @@ gulp.task("new-incident", (cb) => {
}); });
function getPlatform(platform) { function getPlatform(platform) {
switch (platform) { switch (platform) {
case "win32": case "win32":
case "win64": { case "win64": {
return "windows"; return "windows";
}
default: {
return platform
}
} }
default: {
return platform;
}
}
} }
function generateFrontMatter(frontMatter, answers) { function generateFrontMatter(frontMatter, answers) {