Try out eslint v9

This commit is contained in:
Dragon Fire
2024-04-06 17:43:07 -04:00
parent 1580de3191
commit ac0cfc00a1
12 changed files with 32 additions and 149 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ module.exports = class GenerateCreditCommand extends Command {
}).join('\n');
})
.filter(cmds => cmds);
const file = Buffer.from(`## Credits\n### NPM Packages\n${npm}\n### Other Credits\n${list.join('\n')}`);
const file = Buffer.from(`## Credits\n### NPM Packages\n${npm}\n\n### Other Credits\n${list.join('\n')}`);
await msg.direct({ files: [{ attachment: file, name: 'credits.txt' }] });
return msg.say('📬 Sent `credits.txt` to your DMs!');
}