Fix formatting issues

This commit is contained in:
Robin
2025-03-27 14:47:01 -04:00
parent 33700d1529
commit ae339ea5cc
3 changed files with 9 additions and 7 deletions

View File

@@ -6,7 +6,10 @@ Please see LICENSE in the repository root for full details.
*/
import { describe, expect, test, vi } from "vitest";
import { type MatrixRTCSession, MatrixRTCSessionEvent } from "matrix-js-sdk/lib/matrixrtc";
import {
type MatrixRTCSession,
MatrixRTCSessionEvent,
} from "matrix-js-sdk/lib/matrixrtc";
import { KeyProviderEvent } from "livekit-client";
import { MatrixKeyProvider } from "./matrixKeyProvider";

View File

@@ -27,7 +27,10 @@ import {
} from "livekit-client";
import * as ComponentsCore from "@livekit/components-core";
import { isEqual } from "lodash-es";
import { type CallMembership, type MatrixRTCSession } from "matrix-js-sdk/lib/matrixrtc";
import {
type CallMembership,
type MatrixRTCSession,
} from "matrix-js-sdk/lib/matrixrtc";
import { CallViewModel, type Layout } from "./CallViewModel";
import {

View File

@@ -47,9 +47,5 @@
"plugins": [{ "name": "typescript-eslint-language-service" }]
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./playwright/**/*.ts"
]
"include": ["./src/**/*.ts", "./src/**/*.tsx", "./playwright/**/*.ts"]
}