From dcac22832d02376c351603c944aabec17f2b7d1b Mon Sep 17 00:00:00 2001 From: Max Isom Date: Sun, 19 Sep 2021 22:24:46 -0400 Subject: Bump linter version --- src/utils/channels.ts | 4 ++-- src/utils/db.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/utils') diff --git a/src/utils/channels.ts b/src/utils/channels.ts index f46e469..4c5b6b0 100644 --- a/src/utils/channels.ts +++ b/src/utils/channels.ts @@ -25,7 +25,7 @@ export const getMemberVoiceChannel = (member?: GuildMember): [VoiceChannel, numb if (channel && channel.type === 'voice') { return [ channel, - getSizeWithoutBots(channel) + getSizeWithoutBots(channel), ]; } @@ -46,7 +46,7 @@ export const getMostPopularVoiceChannel = (guild: Guild): [VoiceChannel, number] voiceChannels.push({ channel: channel as VoiceChannel, - n: size + n: size, }); } } diff --git a/src/utils/db.ts b/src/utils/db.ts index 4a15875..be42013 100644 --- a/src/utils/db.ts +++ b/src/utils/db.ts @@ -8,5 +8,5 @@ export const sequelize = new Sequelize({ database: 'muse', storage: path.join(DATA_DIR, 'db.sqlite'), models: [Cache, Settings, Shortcut], - logging: false + logging: false, }); -- cgit v1.2.3