WIP: Format code with Google Typescript formatting guidelines

This commit is contained in:
2025-07-04 10:39:32 -04:00
parent e53d38e0ad
commit c834acdfec
12 changed files with 596 additions and 235 deletions

View File

@@ -4,10 +4,10 @@ import {
type ChatInputCommandInteraction,
type Client,
type InviteStageInstance,
} from "discord.js";
import type { Sequelize } from "sequelize";
} from 'discord.js';
import type {Sequelize} from 'sequelize';
import { quotes } from "./quotes.json";
import {quotes} from './quotes.json';
async function execute(interaction: ChatInputCommandInteraction) {
try {
@@ -26,8 +26,8 @@ async function initialize() {}
export default function (settings: {}) {
return {
data: new SlashCommandBuilder()
.setName("quote")
.setDescription("Print a quote from League of Legends."),
.setName('quote')
.setDescription('Print a quote from League of Legends.'),
initialize: initialize,
execute: execute,
};