Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion apps/appstore/src/components/LimitToGroupDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
-->

<script setup lang="ts">
import type { NcSelectUsersModel } from '@nextcloud/vue/components/NcSelectUsers'
import type { IAppstoreApp, IAppstoreExApp } from '../apps.d.ts'

import { t } from '@nextcloud/l10n'
Expand All @@ -12,7 +13,7 @@ import { useDebounceFn } from '@vueuse/core'
import { computed, ref, watch } from 'vue'
import NcButton from '@nextcloud/vue/components/NcButton'
import NcDialog from '@nextcloud/vue/components/NcDialog'
import NcSelectUsers, { type NcSelectUsersModel } from '@nextcloud/vue/components/NcSelectUsers'
import NcSelectUsers from '@nextcloud/vue/components/NcSelectUsers'
import { useAppsStore } from '../store/apps.ts'
import { useGroupsStore } from '../store/groups.ts'

Expand Down
7 changes: 3 additions & 4 deletions apps/files/src/utils/fileUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import {
type Node,

FileType,
} from '@nextcloud/files'
import type { Node } from '@nextcloud/files'

import { FileType } from '@nextcloud/files'
import { n } from '@nextcloud/l10n'

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@
</template>

<script lang="ts">
import type { PropType } from 'vue'

import { t } from '@nextcloud/l10n'
import {
type PropType,

defineComponent,
} from 'vue'
import NcButton from '@nextcloud/vue/components/NcButton'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@
</template>

<script lang="ts" setup>
import {
type Component,
type PropType,
import type { Component, PropType } from 'vue'

import {
computed,
} from 'vue'

Expand Down
6 changes: 2 additions & 4 deletions apps/files_versions/src/components/VirtualScrolling.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@
</template>

<script lang="ts">
import {
type PropType,
import type { PropType } from 'vue'

defineComponent,
} from 'vue'
import { defineComponent } from 'vue'
import logger from '../utils/logger.ts'

export interface RowItem {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
-->

<script setup lang="ts">
import type { PresetAppConfigs, PresetIds } from './models.ts'

import { t } from '@nextcloud/l10n'
import NcCheckboxRadioSwitch from '@nextcloud/vue/components/NcCheckboxRadioSwitch'
import AccountGroupOutline from 'vue-material-design-icons/AccountGroupOutline.vue'
Expand All @@ -13,7 +15,6 @@ import Crowd from 'vue-material-design-icons/Crowd.vue'
import Domain from 'vue-material-design-icons/Domain.vue'
import MinusCircleOutline from 'vue-material-design-icons/MinusCircleOutline.vue'
import SchoolOutline from 'vue-material-design-icons/SchoolOutline.vue'
import { type PresetAppConfigs, type PresetIds } from './models.ts'

defineProps({
presets: {
Expand Down
22 changes: 6 additions & 16 deletions build/eslint-baseline-legacy.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"apps/files/src/components/FilesNavigationListItem.vue": {
"@nextcloud/no-deprecated-library-props": {
"count": 1
"apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue": {
"vue/custom-event-name-casing": {
"count": 3
}
},
"apps/files_sharing/src/components/SharingEntryQuickShareSelect.vue": {
Expand All @@ -24,21 +24,11 @@
"count": 1
}
},
"apps/settings/src/components/GroupListItem.vue": {
"@nextcloud/no-deprecated-library-props": {
"count": 1
}
},
"apps/settings/src/components/Users/NewUserDialog.vue": {
"vue/no-mutating-props": {
"count": 2
}
},
"apps/settings/src/views/UserManagementNavigation.vue": {
"@nextcloud/no-deprecated-library-props": {
"count": 4
}
},
"apps/workflowengine/src/components/Check.vue": {
"vue/no-mutating-props": {
"count": 3
Expand All @@ -52,12 +42,12 @@
"count": 1
}
},
"core/src/views/Login.vue": {
"vue/multi-word-component-names": {
"core/src/components/UnifiedSearch/UnifiedSearchModal.vue": {
"vue/custom-event-name-casing": {
"count": 1
}
},
"core/src/views/Setup.vue": {
"core/src/views/Login.vue": {
"vue/multi-word-component-names": {
"count": 1
}
Expand Down
4 changes: 2 additions & 2 deletions core/src/views/PublicPageMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
</template>

<script setup lang="ts">
import type { Ref } from 'vue'

import { loadState } from '@nextcloud/initial-state'
import { t } from '@nextcloud/l10n'
import { useIsSmallMobile } from '@nextcloud/vue/composables/useIsMobile'
import { spawnDialog } from '@nextcloud/vue/functions/dialog'
import {
type Ref,

computed,
ref,
} from 'vue'
Expand Down
Loading
Loading