From 3a001cdd872734919c89fec0c02df66be5cfeabc Mon Sep 17 00:00:00 2001 From: akash1810 Date: Tue, 26 Sep 2023 21:32:14 +0100 Subject: [PATCH] refactor: Remove eslint warning --- src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0337dc5..a3b3ba0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,8 +2,7 @@ import { createServeCommand } from '@cloudquery/plugin-sdk-javascript/plugin/ser import { plugin } from './plugin.js'; export function main() { - // eslint-disable-next-line @typescript-eslint/no-unsafe-call ,@typescript-eslint/no-unsafe-member-access -- TODO - createServeCommand(plugin()).parse(); + void createServeCommand(plugin()).parse(); } main();