style(backend): fix all eslint errors (#9967)

This commit is contained in:
Kagami Sascha Rosylight 2023-02-17 02:56:59 +01:00 committed by GitHub
parent 7c5fc2c423
commit 8f9ce23e52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 11 additions and 12 deletions

View file

@ -107,7 +107,7 @@ export class ImageProcessingService {
withoutEnlargement: true,
})
.rotate()
.webp(options)
.webp(options);
return {
data,

View file

@ -40,7 +40,6 @@ function truncateBody<T extends keyof pushNotificationsTypes>(type: T, body: pus
},
} : {}),
};
}
@Injectable()

View file

@ -53,7 +53,7 @@ export class VideoProcessingService {
thumbnail: '1',
url,
})
)
);
}
}

View file

@ -22,7 +22,7 @@ export class EmojiEntityService {
src: Emoji['id'] | Emoji,
opts: { omitHost?: boolean; omitId?: boolean; withUrl?: boolean; } = { omitHost: true, omitId: true, withUrl: true },
): Promise<Packed<'Emoji'>> {
opts = { omitHost: true, omitId: true, withUrl: true, ...opts }
opts = { omitHost: true, omitId: true, withUrl: true, ...opts };
const emoji = typeof src === 'object' ? src : await this.emojisRepository.findOneByOrFail({ id: src });

View file

@ -395,7 +395,7 @@ export class FileServerService {
state: 'remote',
mime, ext,
path, cleanup,
}
};
} catch (e) {
cleanup();
throw e;
@ -429,7 +429,7 @@ export class FileServerService {
url: file.uri,
fileRole: isThumbnail ? 'thumbnail' : isWebpublic ? 'webpublic' : 'original',
file,
}
};
}
const path = this.internalStorageService.resolvePath(key);
@ -452,6 +452,6 @@ export class FileServerService {
mime: file.type,
ext: null,
path,
}
};
}
}

View file

@ -31,7 +31,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
private queryService: QueryService,
) {
super(meta, paramDef, async (ps, me) => {
const query = this.queryService.makePaginationQuery(this.adsRepository.createQueryBuilder('ad'), ps.sinceId, ps.untilId)
const query = this.queryService.makePaginationQuery(this.adsRepository.createQueryBuilder('ad'), ps.sinceId, ps.untilId);
const ads = await query.take(ps.limit).getMany();
return ads;

View file

@ -57,7 +57,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
await this.db.queryResultCache!.remove(['meta_emojis']);
this.globalEventService.publishBroadcastStream('emojiDeleted', {
emojis: [ await this.emojiEntityService.pack(emoji) ],
emojis: [await this.emojiEntityService.pack(emoji)],
});
this.moderationLogService.insertModerationLog(me, 'deleteEmoji', {

View file

@ -72,11 +72,11 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
if (emoji.name === ps.name) {
this.globalEventService.publishBroadcastStream('emojiUpdated', {
emojis: [ updated ],
emojis: [updated],
});
} else {
this.globalEventService.publishBroadcastStream('emojiDeleted', {
emojis: [ await this.emojiEntityService.pack(emoji) ],
emojis: [await this.emojiEntityService.pack(emoji)],
});
this.globalEventService.publishBroadcastStream('emojiAdded', {

View file

@ -280,7 +280,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
files: files,
poll: ps.poll ? {
choices: ps.poll.choices,
multiple: ps.poll.multiple || false,
multiple: ps.poll.multiple ?? false,
expiresAt: ps.poll.expiresAt ? new Date(ps.poll.expiresAt) : null,
} : undefined,
text: ps.text ?? undefined,