You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-25 05:23:13 +03:00
Appease the linter's line length limit
This commit is contained in:
@@ -29,7 +29,13 @@ import {SERVICE_TYPES} from './service-types';
|
|||||||
import {logger} from './logger';
|
import {logger} from './logger';
|
||||||
import {PushProcessor} from "./pushprocessor";
|
import {PushProcessor} from "./pushprocessor";
|
||||||
import * as utils from "./utils";
|
import * as utils from "./utils";
|
||||||
import {MatrixHttpApi, PREFIX_IDENTITY_V1, PREFIX_IDENTITY_V2, PREFIX_R0, PREFIX_UNSTABLE} from "./http-api";
|
import {
|
||||||
|
MatrixHttpApi,
|
||||||
|
PREFIX_IDENTITY_V1,
|
||||||
|
PREFIX_IDENTITY_V2,
|
||||||
|
PREFIX_R0,
|
||||||
|
PREFIX_UNSTABLE,
|
||||||
|
} from "./http-api";
|
||||||
|
|
||||||
function termsUrlForService(serviceType, baseUrl) {
|
function termsUrlForService(serviceType, baseUrl) {
|
||||||
switch (serviceType) {
|
switch (serviceType) {
|
||||||
|
|||||||
@@ -26,7 +26,12 @@ import * as utils from "../../utils";
|
|||||||
import {polyfillSuper} from "../../utils";
|
import {polyfillSuper} from "../../utils";
|
||||||
import * as olmlib from "../olmlib";
|
import * as olmlib from "../olmlib";
|
||||||
import {DeviceInfo} from "../deviceinfo";
|
import {DeviceInfo} from "../deviceinfo";
|
||||||
import {DecryptionAlgorithm, DecryptionError, EncryptionAlgorithm, registerAlgorithm} from "./base";
|
import {
|
||||||
|
DecryptionAlgorithm,
|
||||||
|
DecryptionError,
|
||||||
|
EncryptionAlgorithm,
|
||||||
|
registerAlgorithm,
|
||||||
|
} from "./base";
|
||||||
|
|
||||||
const DeviceVerification = DeviceInfo.DeviceVerification;
|
const DeviceVerification = DeviceInfo.DeviceVerification;
|
||||||
|
|
||||||
|
|||||||
@@ -33,7 +33,12 @@ import * as olmlib from "./olmlib";
|
|||||||
import {DeviceList} from "./DeviceList";
|
import {DeviceList} from "./DeviceList";
|
||||||
import {DeviceInfo} from "./deviceinfo";
|
import {DeviceInfo} from "./deviceinfo";
|
||||||
import * as algorithms from "./algorithms";
|
import * as algorithms from "./algorithms";
|
||||||
import {CrossSigningInfo, CrossSigningLevel, DeviceTrustLevel, UserTrustLevel} from './CrossSigning';
|
import {
|
||||||
|
CrossSigningInfo,
|
||||||
|
CrossSigningLevel,
|
||||||
|
DeviceTrustLevel,
|
||||||
|
UserTrustLevel,
|
||||||
|
} from './CrossSigning';
|
||||||
import {SECRET_STORAGE_ALGORITHM_V1, SecretStorage} from './SecretStorage';
|
import {SECRET_STORAGE_ALGORITHM_V1, SecretStorage} from './SecretStorage';
|
||||||
import {OutgoingRoomKeyRequestManager} from './OutgoingRoomKeyRequestManager';
|
import {OutgoingRoomKeyRequestManager} from './OutgoingRoomKeyRequestManager';
|
||||||
import {IndexedDBCryptoStore} from './store/indexeddb-crypto-store';
|
import {IndexedDBCryptoStore} from './store/indexeddb-crypto-store';
|
||||||
|
|||||||
@@ -20,7 +20,12 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import {VerificationBase as Base} from "./Base";
|
import {VerificationBase as Base} from "./Base";
|
||||||
import {errorFactory, newKeyMismatchError, newUserCancelledError, newUserMismatchError} from './Error';
|
import {
|
||||||
|
errorFactory,
|
||||||
|
newKeyMismatchError,
|
||||||
|
newUserCancelledError,
|
||||||
|
newUserMismatchError,
|
||||||
|
} from './Error';
|
||||||
|
|
||||||
const MATRIXTO_REGEXP = /^(?:https?:\/\/)?(?:www\.)?matrix\.to\/#\/([#@!+][^?]+)\?(.+)$/;
|
const MATRIXTO_REGEXP = /^(?:https?:\/\/)?(?:www\.)?matrix\.to\/#\/([#@!+][^?]+)\?(.+)$/;
|
||||||
const KEY_REGEXP = /^key_([^:]+:.+)$/;
|
const KEY_REGEXP = /^key_([^:]+:.+)$/;
|
||||||
|
|||||||
@@ -17,7 +17,13 @@ limitations under the License.
|
|||||||
|
|
||||||
import {randomString} from '../../../randomstring';
|
import {randomString} from '../../../randomstring';
|
||||||
import {logger} from '../../../logger';
|
import {logger} from '../../../logger';
|
||||||
import {CANCEL_TYPE, PHASE_STARTED, REQUEST_TYPE, START_TYPE, VerificationRequest} from "./VerificationRequest";
|
import {
|
||||||
|
CANCEL_TYPE,
|
||||||
|
PHASE_STARTED,
|
||||||
|
REQUEST_TYPE,
|
||||||
|
START_TYPE,
|
||||||
|
VerificationRequest,
|
||||||
|
} from "./VerificationRequest";
|
||||||
import {errorFromEvent, newUnexpectedMessageError} from "../Error";
|
import {errorFromEvent, newUnexpectedMessageError} from "../Error";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -18,7 +18,12 @@ limitations under the License.
|
|||||||
import {logger} from '../../../logger';
|
import {logger} from '../../../logger';
|
||||||
import {RequestCallbackChannel} from "./RequestCallbackChannel";
|
import {RequestCallbackChannel} from "./RequestCallbackChannel";
|
||||||
import {EventEmitter} from 'events';
|
import {EventEmitter} from 'events';
|
||||||
import {errorFactory, errorFromEvent, newUnexpectedMessageError, newUnknownMethodError} from "../Error";
|
import {
|
||||||
|
errorFactory,
|
||||||
|
errorFromEvent,
|
||||||
|
newUnexpectedMessageError,
|
||||||
|
newUnknownMethodError,
|
||||||
|
} from "../Error";
|
||||||
|
|
||||||
// the recommended amount of time before a verification request
|
// the recommended amount of time before a verification request
|
||||||
// should be (automatically) cancelled without user interaction
|
// should be (automatically) cancelled without user interaction
|
||||||
|
|||||||
Reference in New Issue
Block a user