From 9cb8ab668c1b1315eaf7953308158c555ef72557 Mon Sep 17 00:00:00 2001 From: Lauri Nevala Date: Tue, 31 Mar 2020 23:28:00 +0300 Subject: [PATCH] Fix lint issues Signed-off-by: Lauri Nevala --- src/main/router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/router.ts b/src/main/router.ts index 50d9199b08..d1a18e389d 100644 --- a/src/main/router.ts +++ b/src/main/router.ts @@ -18,7 +18,7 @@ declare const __static: string; const assetsPath = path.join(__static, "build/client") -const mimeTypes: { [key:string]:string; } = { +const mimeTypes: {[key: string]: string} = { "html": "text/html", "txt": "text/plain", "css": "text/css",