3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-06-08 00:05:01 +00:00

chore: prettier

This commit is contained in:
Dragory 2024-08-11 22:03:16 +03:00
parent cb2306e522
commit 32875c23e9
No known key found for this signature in database
13 changed files with 26 additions and 29 deletions

View file

@ -6,7 +6,6 @@ import { DisableAutoReactionsCmd } from "./commands/DisableAutoReactionsCmd.js";
import { NewAutoReactionsCmd } from "./commands/NewAutoReactionsCmd.js";
import { AddReactionsEvt } from "./events/AddReactionsEvt.js";
import { AutoReactionsPluginType, zAutoReactionsConfig } from "./types.js";
import { autoReactionsPluginDocs } from "./docs.js";
const defaultOptions: PluginOptions<AutoReactionsPluginType> = {
config: {

View file

@ -32,7 +32,6 @@ import { clearOldRecentNicknameChanges } from "./functions/clearOldNicknameChang
import { clearOldRecentActions } from "./functions/clearOldRecentActions.js";
import { clearOldRecentSpam } from "./functions/clearOldRecentSpam.js";
import { AutomodPluginType, zAutomodConfig } from "./types.js";
import { automodPluginDocs } from "./docs.js";
const defaultOptions = {
config: {

View file

@ -14,7 +14,6 @@ import { getRecentCasesByMod } from "./functions/getRecentCasesByMod.js";
import { getTotalCasesByMod } from "./functions/getTotalCasesByMod.js";
import { postCaseToCaseLogChannel } from "./functions/postToCaseLogChannel.js";
import { CasesPluginType, zCasesConfig } from "./types.js";
import { casesPluginDocs } from "./docs.js";
// The `any` cast here is to prevent TypeScript from locking up from the circular dependency
function getLogsPlugin(): Promise<any> {

View file

@ -6,7 +6,6 @@ import { LogsPlugin } from "../Logs/LogsPlugin.js";
import { CensorPluginType, zCensorConfig } from "./types.js";
import { onMessageCreate } from "./util/onMessageCreate.js";
import { onMessageUpdate } from "./util/onMessageUpdate.js";
import { censorPluginDocs } from "./docs.js";
const defaultOptions: PluginOptions<CensorPluginType> = {
config: {

View file

@ -3,7 +3,6 @@ import { GuildLogs } from "../../data/GuildLogs.js";
import { LogsPlugin } from "../Logs/LogsPlugin.js";
import { VoiceStateUpdateEvt } from "./events/VoiceStateUpdateEvt.js";
import { CompanionChannelsPluginType, zCompanionChannelsConfig } from "./types.js";
import { companionChannelsPluginDocs } from "./docs.js";
const defaultOptions = {
config: {

View file

@ -6,7 +6,6 @@ import { UtilityPlugin } from "../Utility/UtilityPlugin.js";
import { ContextClickedEvt } from "./events/ContextClickedEvt.js";
import { ContextMenuPluginType, zContextMenusConfig } from "./types.js";
import { loadAllCommands } from "./utils/loadAllCommands.js";
import { contextMenuPluginDocs } from "./docs.js";
const defaultOptions: PluginOptions<ContextMenuPluginType> = {
config: {

View file

@ -1,6 +1,5 @@
import { Guild } from "discord.js";
import { BasePluginType, GlobalPluginData, globalPlugin, globalPluginEventListener } from "knub";
import z from "zod";
import { AllowedGuilds } from "../../data/AllowedGuilds.js";
import { Configs } from "../../data/Configs.js";
import { env } from "../../env.js";

View file

@ -1,4 +1,3 @@
import { z } from "zod";
import { ZeppelinPluginDocs } from "../../types.js";
import { trimPluginDescription } from "../../utils.js";
import { zGuildAccessMonitorConfig } from "./types.js";