Appease the linter

pull/21833/head
Travis Ralston 2020-11-26 08:06:48 -07:00
parent b9c57f47b0
commit c2c328e23c
1 changed files with 4 additions and 0 deletions

View File

@ -31,13 +31,17 @@ export class VisibilityProvider {
}
public isRoomVisible(room: Room): boolean {
/* eslint-disable prefer-const */
let isVisible = true; // Returned at the end of this function
let forced = false; // When true, this function won't bother calling the customisation points
/* eslint-enable prefer-const */
// ------
// TODO: The `if` statements to control visibility of custom room types
// would go here. The remainder of this function assumes that the statements
// will be here.
//
// When removing this comment block, please remove the lint disable lines in the area.
// ------
const isVisibleFn = RoomListCustomisations.isRoomVisible;