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
1 changed files with 8 additions and 8 deletions

View File

@ -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) {