Merge pull request #16454 from nextcloud/dependabot/npm_and_yarn/nextcloud/eslint-config-9.0.0-rc.6

build(deps-dev): Bump @nextcloud/eslint-config from 9.0.0-rc.5 to 9.0.0-rc.6
This commit is contained in:
github-actions[bot] 2025-11-29 15:00:20 +00:00 committed by GitHub
commit ac2784c47c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 552 additions and 396 deletions

View file

@ -44,8 +44,13 @@ export default [
'@typescript-eslint/no-unused-expressions': 'off', // non-fixable
'@typescript-eslint/no-unused-vars': 'off', // non-fixable
'@typescript-eslint/no-use-before-define': 'off', // non-fixable
'jsdoc/check-tag-names': 'off', // need to respect JS
'jsdoc/reject-function-type': 'off', // need to respect JS
'jsdoc/reject-any-type': 'off', // need to respect JS
'jsdoc/require-function-type': 'off', // need to respect JS
'jsdoc/require-param-type': 'off', // need to respect JS
'jsdoc/require-param-description': 'off', // need to respect JS
'jsdoc/require-throws-type': 'off', // need to respect JS
'no-console': 'off', // non-fixable
'no-unused-vars': 'off', // non-fixable
'no-use-before-define': 'off', // non-fixable

918
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -86,7 +86,7 @@
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.0-rc.5",
"@nextcloud/eslint-config": "^9.0.0-rc.6",
"@nextcloud/stylelint-config": "^3.1.1",
"@rspack/cli": "^1.6.5",
"@rspack/core": "^1.6.4",

View file

@ -74,8 +74,7 @@ async function extendOneToOneConversation() {
<template>
<NcPopover
:container="container"
popup-role="dialog"
close-on-click-outside>
popup-role="dialog">
<template #trigger>
<NcButton
variant="tertiary"

View file

@ -6,7 +6,6 @@
<template>
<NcModal
no-close
:close-on-click-outside="false"
:label-id="dialogHeaderId"
size="small">
<div class="modal__content">

View file

@ -8,7 +8,6 @@
v-if="showModal"
ref="modal"
:size="isVoiceMessage ? 'small' : 'normal'"
:close-on-click-outside="false"
:label-id="dialogHeaderId"
@close="handleDismiss">
<div

View file

@ -111,7 +111,7 @@ EventBus.once('joined-conversation', () => {
}
})
/** Update guest displayName from public event (e.g. @nextcloud/auth) */
/** Update guest displayName from public event (e.g. `@nextcloud/auth`) */
subscribe('user:info:changed', updateDisplayNameFromPublicEvent)
onBeforeUnmount(() => {
unsubscribe('user:info:changed', updateDisplayNameFromPublicEvent)

View file

@ -375,7 +375,7 @@ async function changeListable(token: string, scope: setConversationListableParam
}
/**
* Set mention permissions to allow or disallow mentioning @all for non-moderators
* Set mention permissions to allow or disallow mentioning `@all` for non-moderators
*
* @param token The token of the conversation to be modified
* @param mentionPermissions The mention permissions to set

View file

@ -99,7 +99,7 @@ export const useActorStore = defineStore('actor', () => {
/**
* Set the actor from the current user
*
* @param user A NextcloudUser object as returned by @nextcloud/auth
* @param user A NextcloudUser object as returned by `@nextcloud/auth`
* @param user.uid The user id of the user
* @param user.displayName The display name of the user
*/

View file

@ -217,8 +217,8 @@ export class Context {
async _decryptFrame(
encodedFrame,
keyIndex,
initialKey = undefined,
ratchetCount = 0,
initialKey = undefined,
ratchetCount = 0,
) {
const { encryptionKey } = this._cryptoKeyRing[keyIndex]
let { material } = this._cryptoKeyRing[keyIndex]

View file

@ -10,7 +10,7 @@ import { t } from '@nextcloud/l10n'
import { generateUrl, getBaseUrl } from '@nextcloud/router'
/**
* Generate a full absolute link with @nextcloud/router.generateUrl
* Generate a full absolute link with `@nextcloud/router` generateUrl()
*
* @param url - path
* @param params - parameters to be replaced into the address

View file

@ -61,9 +61,9 @@ export default function SimpleWebRTC(opts) {
// Note that this is a coarse check; calling "getScreenMedia" may fail even
// if "supportScreenSharing" is true.
const screenSharingSupported
= (window.navigator.mediaDevices && window.navigator.mediaDevices.getDisplayMedia)
|| (window.navigator.webkitGetUserMedia)
|| (window.navigator.userAgent.match('Firefox'))
= (window.navigator.mediaDevices && window.navigator.mediaDevices.getDisplayMedia)
|| (window.navigator.webkitGetUserMedia)
|| (window.navigator.userAgent.match('Firefox'))
webrtcSupport.supportScreenSharing = window.location.protocol === 'https:' && screenSharingSupported
// attach detected support for convenience