From 89a2001b217dc192f52a95ea602cc336bb387cde Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Tue, 17 May 2022 08:27:02 +0000 Subject: [PATCH] Format code with standardjs and prettier This commit fixes the style issues introduced in 0e17d18 according to the output from standardjs and prettier. Details: https://deepsource.io/gh/ZynerOrg/xyter/transform/5fe95853-443c-42e6-8991-b4f60bc662b9/ --- src/index.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/index.ts b/src/index.ts index 10146ea..eb0f8fb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,14 +9,14 @@ import schedules from "@schedules"; import events from "@handlers/events"; import commands from "@handlers/commands"; - const client = new Client({ - intents, - }); +const client = new Client({ + intents, +}); - database(); - schedules(client); +database(); +schedules(client); - commands(client); - events(client); +commands(client); +events(client); - client.login(token); +client.login(token);