mirror of https://github.com/vector-im/riot-web
Appease the linter
parent
7de727915d
commit
4969cfe9de
|
@ -62,7 +62,7 @@ import Matrix from 'matrix-js-sdk';
|
||||||
import dis from './dispatcher/dispatcher';
|
import dis from './dispatcher/dispatcher';
|
||||||
import WidgetUtils from './utils/WidgetUtils';
|
import WidgetUtils from './utils/WidgetUtils';
|
||||||
import WidgetEchoStore from './stores/WidgetEchoStore';
|
import WidgetEchoStore from './stores/WidgetEchoStore';
|
||||||
import SettingsStore from './settings/SettingsStore';
|
import SettingsStore from './settings/SettingsStore';
|
||||||
import {generateHumanReadableId} from "./utils/NamingUtils";
|
import {generateHumanReadableId} from "./utils/NamingUtils";
|
||||||
import {Jitsi} from "./widgets/Jitsi";
|
import {Jitsi} from "./widgets/Jitsi";
|
||||||
import {WidgetType} from "./widgets/WidgetType";
|
import {WidgetType} from "./widgets/WidgetType";
|
||||||
|
|
|
@ -51,7 +51,7 @@ import { getHomePageUrl } from '../../utils/pages';
|
||||||
|
|
||||||
import createRoom from "../../createRoom";
|
import createRoom from "../../createRoom";
|
||||||
import {_t, _td, getCurrentLanguage} from '../../languageHandler';
|
import {_t, _td, getCurrentLanguage} from '../../languageHandler';
|
||||||
import SettingsStore from "../../settings/SettingsStore";
|
import SettingsStore from "../../settings/SettingsStore";
|
||||||
import ThemeController from "../../settings/controllers/ThemeController";
|
import ThemeController from "../../settings/controllers/ThemeController";
|
||||||
import { startAnyRegistrationFlow } from "../../Registration.js";
|
import { startAnyRegistrationFlow } from "../../Registration.js";
|
||||||
import { messageForSyncError } from '../../utils/ErrorUtils';
|
import { messageForSyncError } from '../../utils/ErrorUtils';
|
||||||
|
|
|
@ -18,7 +18,7 @@ import { SettingLevel } from "./SettingLevel";
|
||||||
|
|
||||||
export type CallbackFn = (changedInRoomId: string, atLevel: SettingLevel, newValAtLevel: any) => void;
|
export type CallbackFn = (changedInRoomId: string, atLevel: SettingLevel, newValAtLevel: any) => void;
|
||||||
|
|
||||||
const IRRELEVANT_ROOM: symbol = Symbol("any room");
|
const IRRELEVANT_ROOM = Symbol("any room");
|
||||||
|
|
||||||
interface RoomWatcherMap {
|
interface RoomWatcherMap {
|
||||||
// @ts-ignore - TS wants string-only keys but we know better - https://github.com/Microsoft/TypeScript/issues/1863
|
// @ts-ignore - TS wants string-only keys but we know better - https://github.com/Microsoft/TypeScript/issues/1863
|
||||||
|
|
|
@ -39,6 +39,7 @@ function isPushNotifyDisabled(): boolean {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getNotifier(): any { // TODO: [TS] Formal type that doesn't cause a cyclical reference.
|
function getNotifier(): any { // TODO: [TS] Formal type that doesn't cause a cyclical reference.
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||||||
let Notifier = require('../../Notifier'); // avoids cyclical references
|
let Notifier = require('../../Notifier'); // avoids cyclical references
|
||||||
if (Notifier.default) Notifier = Notifier.default; // correct for webpack require() weirdness
|
if (Notifier.default) Notifier = Notifier.default; // correct for webpack require() weirdness
|
||||||
return Notifier;
|
return Notifier;
|
||||||
|
|
|
@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import SettingsStore from '../SettingsStore';
|
import SettingsStore from '../SettingsStore';
|
||||||
import dis from '../../dispatcher/dispatcher';
|
import dis from '../../dispatcher/dispatcher';
|
||||||
import { Action } from '../../dispatcher/actions';
|
import { Action } from '../../dispatcher/actions';
|
||||||
import ThemeController from "../controllers/ThemeController";
|
import ThemeController from "../controllers/ThemeController";
|
||||||
|
|
Loading…
Reference in New Issue