Appease the linter

pull/21833/head
Travis Ralston 2020-11-02 21:38:59 -07:00
parent f5cd079a16
commit fc90531c9f
2 changed files with 2 additions and 2 deletions

View File

@ -25,6 +25,6 @@ export enum ElementWidgetActions {
export interface IViewRoomApiRequest extends IWidgetApiRequest {
data: {
room_id: string;
room_id: string; // eslint-disable-line camelcase
};
}

View File

@ -63,7 +63,7 @@ export class StopGapWidgetDriver extends WidgetDriver {
if (!client || !roomId) throw new Error("Not in a room or not attached to a client");
let r: {event_id: string} = null;
let r: {event_id: string} = null; // eslint-disable-line camelcase
if (stateKey !== null) {
// state event
r = await client.sendStateEvent(roomId, eventType, content, stateKey);