mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-05-11 12:21:37 +02:00
Bump linter version
This commit is contained in:
parent
fd782219ef
commit
dcac22832d
28 changed files with 184 additions and 198 deletions
|
@ -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,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue