chore: fix lint ordering

This commit is contained in:
Peter Steinberger
2026-01-03 05:38:29 +01:00
parent 10d56d31e9
commit 53fd7a4473
2 changed files with 2 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ import {
writeScreenRecordToFile,
} from "../cli/nodes-screen.js";
import { parseDurationMs } from "../cli/parse-duration.js";
import { loadConfig, type DiscordActionConfig } from "../config/config.js";
import { type DiscordActionConfig, loadConfig } from "../config/config.js";
import {
addRoleDiscord,
banMemberDiscord,

View File

@@ -63,11 +63,7 @@ export class MessageList extends Container {
component.setText(text);
}
private addMessage(
role: MessageRole,
text: string,
style: DefaultTextStyle,
) {
private addMessage(role: MessageRole, text: string, style: DefaultTextStyle) {
const label = new Text(
role === "user"
? theme.user("you")