This commit is contained in:
Ean Milligan 2025-04-25 22:06:08 -04:00
parent 0bf818288a
commit 5b87cfda75
4 changed files with 100 additions and 114 deletions

View File

@ -1,14 +1,11 @@
{
"compilerOptions": {
"allowJs": true,
"lib": ["deno.worker"],
"strict": true
},
"lint": {
"files": {
"include": ["src/", "db/", "mod.ts", "deps.ts", "config.ts", "config.example.ts"],
"exclude": []
},
"exclude": [],
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
@ -16,16 +13,12 @@
}
},
"fmt": {
"files": {
"include": ["src/", "db/", "mod.ts", "deps.ts", "config.ts", "config.example.ts"],
"exclude": []
},
"options": {
"useTabs": true,
"exclude": [],
"useTabs": false,
"lineWidth": 250,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "preserve"
}
}
}

11
deps.ts
View File

@ -1,12 +1,5 @@
export {
startBot, editBotStatus, editBotNickname,
sendMessage,
Intents, DiscordActivityTypes,
cache, cacheHandlers
} from "https://deno.land/x/discordeno@12.0.1/mod.ts";
export { cache, cacheHandlers, DiscordActivityTypes, editBotNickname, editBotStatus, Intents, sendMessage, startBot } from 'https://deno.land/x/discordeno@12.0.1/mod.ts';
export type {
DiscordenoMessage, DiscordenoGuild, Embed
} from "https://deno.land/x/discordeno@12.0.1/mod.ts";
export type { DiscordenoGuild, DiscordenoMessage, Embed } from 'https://deno.land/x/discordeno@12.0.1/mod.ts';
export { initLog, log, LogTypes as LT } from 'https://raw.githubusercontent.com/Burn-E99/Log4Deno/V1.1.1/mod.ts';