fix: update eslint settings

This commit is contained in:
Joachim Van Herwegen
2020-06-03 16:02:19 +02:00
parent 3e2cfaf11e
commit a07f440ab6
12 changed files with 47 additions and 53 deletions

View File

@@ -27,7 +27,7 @@ export abstract class AsyncHandler<TInput, TOutput = void> {
*
* @returns The result of the handle function of the handler.
*/
public async handleSafe (data: TInput): Promise<TOutput> {
public async handleSafe(data: TInput): Promise<TOutput> {
await this.canHandle(data);
return this.handle(data);