Prevent prettier from inlining UtilityPlugin command list

This commit is contained in:
Dragory 2020-07-06 01:02:55 +03:00
parent 017fcd93cc
commit 798b6a2341
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -15,7 +15,15 @@ import { InfoCmd } from "./commands/InfoCmd";
export const UtilityPlugin = zeppelinPlugin<UtilityPluginType>()("utility", {
configSchema: ConfigSchema,
commands: [BanSearchCmd, InfoCmd, LevelCmd, RolesCmd, SearchCmd, ServerCmd],
// prettier-ignore
commands: [
BanSearchCmd,
InfoCmd,
LevelCmd,
RolesCmd,
SearchCmd,
ServerCmd,
],
onLoad({ state, guild }) {
state.logs = new GuildLogs(guild.id);