From 9b936cf9ce4d7815e482e6bd23d807b2ea8ad7cc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 12:15:52 +0000 Subject: [PATCH 1/2] Update dependency prettier to v3.2.4 --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 2cb5931d..2fa8fa18 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8117,9 +8117,9 @@ prelude-ls@^1.2.1: integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== prettier@^3.0.0: - version "3.2.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.2.tgz#96e580f7ca9c96090ad054616c0c4597e2844b65" - integrity sha512-HTByuKZzw7utPiDO523Tt2pLtEyK7OibUD9suEJQrPUCYQqrHr74GGX6VidMrovbf/I50mPqr8j/II6oBAuc5A== + version "3.2.4" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.4.tgz#4723cadeac2ce7c9227de758e5ff9b14e075f283" + integrity sha512-FWu1oLHKCrtpO1ypU6J0SbK2d9Ckwysq6bHj/uaCP26DxrPpppCLQRGVuqAxSTvhF00AcvDRyYrLNW7ocBhFFQ== pretty-format@^27.0.2: version "27.5.1" From fe4bd32fcd6e07bb2dcb5ebd223c9aa8ce17a719 Mon Sep 17 00:00:00 2001 From: Robin Date: Thu, 18 Jan 2024 14:58:45 -0500 Subject: [PATCH 2/2] Format code --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 2544804f..61b2cfaf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,13 +25,13 @@ // "noUncheckedIndexedAccess": true, // "noUnusedParameters": true, - "plugins": [{ "name": "typescript-eslint-language-service" }] + "plugins": [{ "name": "typescript-eslint-language-service" }], }, "include": [ "./node_modules/matrix-js-sdk/src/@types/*.d.ts", "./src/**/*.ts", "./src/**/*.tsx", "./test/**/*.ts", - "./test/**/*.tsx" - ] + "./test/**/*.tsx", + ], }