mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
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:
commit
ac2784c47c
12 changed files with 552 additions and 396 deletions
|
|
@ -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
918
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
<template>
|
||||
<NcModal
|
||||
no-close
|
||||
:close-on-click-outside="false"
|
||||
:label-id="dialogHeaderId"
|
||||
size="small">
|
||||
<div class="modal__content">
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@
|
|||
v-if="showModal"
|
||||
ref="modal"
|
||||
:size="isVoiceMessage ? 'small' : 'normal'"
|
||||
:close-on-click-outside="false"
|
||||
:label-id="dialogHeaderId"
|
||||
@close="handleDismiss">
|
||||
<div
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue