mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
refactor: Bring lint config back to original strictness
This commit is contained in:
@@ -20,7 +20,7 @@ export class HtmlViewEntry {
|
||||
public constructor(
|
||||
public readonly route: InteractionRoute,
|
||||
public readonly filePath: string,
|
||||
) { }
|
||||
) {}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -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> {}
|
||||
|
||||
@@ -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>> {}
|
||||
|
||||
Reference in New Issue
Block a user