From ec06577b46e149be897ab26461e8898787e9dba5 Mon Sep 17 00:00:00 2001 From: Dark <7890309+DarkView@users.noreply.github.com> Date: Wed, 8 Jul 2020 03:01:14 +0200 Subject: [PATCH] Prettier: Ignore events in LocateUser --- .../src/plugins/LocateUser/LocateUserPlugin.ts | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/backend/src/plugins/LocateUser/LocateUserPlugin.ts b/backend/src/plugins/LocateUser/LocateUserPlugin.ts index c71bb3d5..96f7264c 100644 --- a/backend/src/plugins/LocateUser/LocateUserPlugin.ts +++ b/backend/src/plugins/LocateUser/LocateUserPlugin.ts @@ -33,13 +33,19 @@ export const LocateUserPlugin = zeppelinPlugin()("locate_u // prettier-ignore commands: [ - WhereCmd, - FollowCmd, - ListFollowCmd, - DeleteFollowCmd, - ], + WhereCmd, + FollowCmd, + ListFollowCmd, + DeleteFollowCmd, + ], - events: [ChannelJoinEvt, ChannelSwitchEvt, ChannelLeaveEvt, GuildBanAddEvt], + // prettier-ignore + events: [ + ChannelJoinEvt, + ChannelSwitchEvt, + ChannelLeaveEvt, + GuildBanAddEvt + ], onLoad(pluginData) { const { state, guild } = pluginData;