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:
@@ -21,7 +21,7 @@ export class StaticAssetEntry {
|
||||
public constructor(
|
||||
public readonly relativeUrl: string,
|
||||
public readonly filePath: string,
|
||||
) { }
|
||||
) {}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -5,4 +5,4 @@ import type { NotificationHandlerInput } from '../NotificationHandler';
|
||||
/**
|
||||
* Creates a {@link Notification} based on the provided input.
|
||||
*/
|
||||
export abstract class NotificationGenerator extends AsyncHandler<NotificationHandlerInput, Notification> { }
|
||||
export abstract class NotificationGenerator extends AsyncHandler<NotificationHandlerInput, Notification> {}
|
||||
|
||||
@@ -14,4 +14,4 @@ export interface NotificationSerializerInput {
|
||||
* This is a separate class between a generator and emitter,
|
||||
* so that a specific notification channel type can add extra metadata to the Representation if needed.
|
||||
*/
|
||||
export abstract class NotificationSerializer extends AsyncHandler<NotificationSerializerInput, Representation> { }
|
||||
export abstract class NotificationSerializer extends AsyncHandler<NotificationSerializerInput, Representation> {}
|
||||
|
||||
Reference in New Issue
Block a user