diff --git a/build/psalm-baseline.xml b/build/psalm-baseline.xml
index 155ccd6ba42..983f7429873 100644
--- a/build/psalm-baseline.xml
+++ b/build/psalm-baseline.xml
@@ -3268,6 +3268,12 @@
+
+
+
+
+
+
diff --git a/core/src/public-share-auth.ts b/core/src/public-share-auth.ts
index bce5a4b5749..39cfa5df4eb 100644
--- a/core/src/public-share-auth.ts
+++ b/core/src/public-share-auth.ts
@@ -11,4 +11,4 @@ __webpack_nonce__ = getCSPNonce()
const View = Vue.extend(PublicShareAuth)
const app = new View()
-app.$mount('#core-public-share-auth')
\ No newline at end of file
+app.$mount('#core-public-share-auth')
diff --git a/cypress/e2e/files_sharing/public-share/PublicShareUtils.ts b/cypress/e2e/files_sharing/public-share/PublicShareUtils.ts
index 995a4ff5252..0577c0120fe 100644
--- a/cypress/e2e/files_sharing/public-share/PublicShareUtils.ts
+++ b/cypress/e2e/files_sharing/public-share/PublicShareUtils.ts
@@ -23,7 +23,7 @@ const defaultShareContext: ShareContext = {
*
* @param context The current share context (defaults to `defaultShareContext` if not provided).
* @return The share URL.
- * @throws Error if the share context has no URL.
+ * @throws {Error} if the share context has no URL.
*/
export function getShareUrl(context: ShareContext = defaultShareContext): string {
if (!context.url) {
diff --git a/cypress/support/commands.ts b/cypress/support/commands.ts
index 0e49f08d38f..84947bc25c8 100644
--- a/cypress/support/commands.ts
+++ b/cypress/support/commands.ts
@@ -18,7 +18,7 @@ Cypress.env('baseUrl', url)
/**
* Enable or disable a user
- * TODO: standardize in @nextcloud/e2e-test-server
+ * TODO: standardize in `@nextcloud/e2e-test-server`
*
* @param {User} user the user to dis- / enable
* @param {boolean} enable True if the user should be enable, false to disable
@@ -45,7 +45,7 @@ Cypress.Commands.add('enableUser', (user: User, enable = true) => {
/**
* cy.uploadedFile - uploads a file from the fixtures folder
- * TODO: standardize in @nextcloud/e2e-test-server
+ * TODO: standardize in `@nextcloud/e2e-test-server`
*
* @param {User} user the owner of the file, e.g. admin
* @param {string} fixture the fixture file name, e.g. image1.jpg
@@ -142,7 +142,7 @@ Cypress.Commands.add('rm', (user: User, target: string) => {
/**
* cy.uploadedContent - uploads a raw content
- * TODO: standardize in @nextcloud/e2e-test-server
+ * TODO: standardize in `@nextcloud/e2e-test-server`
*
* @param {User} user the owner of the file, e.g. admin
* @param {Blob} blob the content to upload