Skip to content

Commit

Permalink
yarn lintfix
Browse files Browse the repository at this point in the history
  • Loading branch information
SAMUKEI committed Jan 24, 2024
1 parent 6509da4 commit 0fa374c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/slack_channels_auto_archive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function createAllPublicChannelsSheetRow(channel: any, usersMap: any, latestMess
lastMessageText,
lastMessageDate,
elapsedDays,
isWhitelisted()
isWhitelisted(),
);

/**
Expand Down Expand Up @@ -220,7 +220,7 @@ function readArchiveWarningChannelsMapFromSpreadSheet(): Map<string, Date> {
*/
function createArchiveWarningChannelSheetRows(
allChannelsRows: Array<AllPublicChannelsSheetRow>,
currentArchiveWarningChannelIdDateMap: Map<string, Date>
currentArchiveWarningChannelIdDateMap: Map<string, Date>,
): Array<ArchiveWarningChannelsSheetRow> {
const result = [];

Expand All @@ -241,8 +241,8 @@ function createArchiveWarningChannelSheetRows(
row.lastUserName,
row.elapsedDays,
listedAt,
daysFromListed
)
daysFromListed,
),
);
}
}
Expand Down Expand Up @@ -523,7 +523,7 @@ class AllPublicChannelsSheetRow {
lastMessageText: string,
lastMessageDate: string,
elapsedDays: number,
isWhitelist: boolean
isWhitelist: boolean,
) {
this.channelName = channelName;
this.channelID = channelID;
Expand Down Expand Up @@ -571,7 +571,7 @@ class ArchiveWarningChannelsSheetRow {
lastUserName: string,
elapsedDays: number,
listedAt: Date,
daysFromListed: number
daysFromListed: number,
) {
this.channelName = channelName;
this.channelID = channelID;
Expand Down

0 comments on commit 0fa374c

Please sign in to comment.