(tasks): Linting.

This commit is contained in:
2026-09-21 22:22:58 +08:00
parent f66f1b84cd
commit d223a4e5b4
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -10,6 +10,6 @@ const task: Task = {
handle: async (context: Client) => { handle: async (context: Client) => {
await checkExpiredBans(context); await checkExpiredBans(context);
}, },
} };
export default task; export default task;
+1 -1
View File
@@ -10,6 +10,6 @@ const task: Task = {
handle: async (context: Client) => { handle: async (context: Client) => {
await Database.pruneOldMessages(); await Database.pruneOldMessages();
}, },
} };
export default task; export default task;
+1 -1
View File
@@ -1,4 +1,4 @@
import { Client } from "discord.js"; import { Client } from 'discord.js';
export interface Task { export interface Task {
id: string; id: string;
+2 -2
View File
@@ -1,7 +1,7 @@
import { APIEmbed, Client } from 'discord.js'; import { APIEmbed, Client } from 'discord.js';
type EmbedSeverity = type EmbedSeverity
| 'info' = | 'info'
| 'warning' | 'warning'
| 'error' | 'error'
| 'success' | 'success'