Re-add prettier (#13812)

Re add prettier in eslint.configs
This commit is contained in:
Charles Bochet
2025-08-11 14:10:04 +02:00
committed by GitHub
parent c8d8fb20c9
commit b14063fe06
168 changed files with 675 additions and 352 deletions
@@ -17,7 +17,7 @@ export class GmailFetchByBatchService {
boundary: string,
): Promise<{
messageIdsByBatch: string[][];
// eslint-disable-next-line @typescript-eslint/no-explicit-any
batchResponses: AxiosResponse<any, any>[];
}> {
@@ -25,7 +25,6 @@ export class GmailFetchByBatchService {
let batchOffset = 0;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let batchResponses: AxiosResponse<any, any>[] = [];
@@ -58,7 +57,7 @@ export class GmailFetchByBatchService {
batchOffset: number,
batchLimit: number,
boundary: string,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
): Promise<AxiosResponse<any, any>> {
const queries = createQueriesFromMessageIds(messageIds);
@@ -104,7 +103,6 @@ export class GmailFetchByBatchService {
}
parseBatch(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
responseCollection: AxiosResponse<any, any>,
): GmailMessageParsedResponse[] {
@@ -132,7 +130,6 @@ export class GmailFetchByBatchService {
return responseItems;
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
getBatchSeparator(responseCollection: AxiosResponse<any, any>): string {
const headers = responseCollection.headers;
@@ -44,7 +44,7 @@ export class GmailGetMessagesService {
private formatBatchResponseAsMessage(
messageIds: string[],
// eslint-disable-next-line @typescript-eslint/no-explicit-any
responseCollection: AxiosResponse<any, any>,
connectedAccount: Pick<