From b4116ee7e549ae35ad8718f2a9d087a48e2821fb Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Mon, 13 Jul 2020 16:31:27 +0200 Subject: Added linting to workflow --- src/main.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/main.ts b/src/main.ts index 5a4e2d3..828ec24 100644 --- a/src/main.ts +++ b/src/main.ts @@ -21,10 +21,9 @@ app.static("/", "./src/public/"); // Manage static files app.get("/", async (c: Context) => await c.render("./src/public/index.html")); // Render index on / // Load groups dynamically -for (let groupName in groups) { - // @ts-ignore - groups[groupName](app.group(groupName)); -} +// deno-lint-ignore ban-ts-comment +// @ts-ignore +for (let groupName in groups) groups[groupName](app.group(groupName)); app.start({ port }); console.log(`Server listening on http://localhost:${port}`); -- cgit v1.2.3