refactor: Bring lint config back to original strictness

This commit is contained in:
Joachim Van Herwegen
2023-10-30 14:32:21 +01:00
parent 7a007dc466
commit 3bb3004abb
52 changed files with 239 additions and 132 deletions

View File

@@ -20,7 +20,7 @@ export class HtmlViewEntry {
public constructor(
public readonly route: InteractionRoute,
public readonly filePath: string,
) { }
) {}
}
/**

View File

@@ -25,4 +25,4 @@ export interface InteractionHandlerInput {
/**
* Handler used for IDP interactions.
*/
export abstract class InteractionHandler extends AsyncHandler<InteractionHandlerInput, Representation> { }
export abstract class InteractionHandler extends AsyncHandler<InteractionHandlerInput, Representation> {}

View File

@@ -38,4 +38,4 @@ export interface JsonInteractionHandlerInput {
* designed to be used for IDP/OIDC interactions.
*/
export abstract class JsonInteractionHandler<TOut extends Dict<Json> = Dict<Json>>
extends AsyncHandler<JsonInteractionHandlerInput, JsonRepresentation<TOut>> { }
extends AsyncHandler<JsonInteractionHandlerInput, JsonRepresentation<TOut>> {}