Prevent prettier from inlining UtilityPlugin command list
This commit is contained in:
parent
017fcd93cc
commit
798b6a2341
1 changed files with 9 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue