Skip to content

Commit 870f727

Browse files
committed
Ignore, no need to return from map
1 parent 6ad2cc0 commit 870f727

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ client.on("ready", async () => {
3838

3939
await Promise.all(
4040
client.guilds.cache.map((guild) => {
41-
checkForRoles(guild);
41+
checkForRoles(guild); // skipcq JS-0042
4242
})
4343
);
4444
}
@@ -95,3 +95,4 @@ process.on("exit", (code) => {
9595
console.log("Now exiting...");
9696
console.log(`Exited with status code: ${code}`);
9797
});
98+

0 commit comments

Comments
 (0)