Skip to content

Commit b888c42

Browse files
Merge pull request #63256 from nextcloud/dependabot/npm_and_yarn/eslint-f223dddea5
build(deps-dev): bump the eslint group across 1 directory with 2 updates
2 parents 210d342 + d8df54c commit b888c42

12 files changed

Lines changed: 255 additions & 237 deletions

File tree

apps/appstore/src/components/LimitToGroupDialog.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
-->
55

66
<script setup lang="ts">
7+
import type { NcSelectUsersModel } from '@nextcloud/vue/components/NcSelectUsers'
78
import type { IAppstoreApp, IAppstoreExApp } from '../apps.d.ts'
89
910
import { t } from '@nextcloud/l10n'
@@ -12,7 +13,7 @@ import { useDebounceFn } from '@vueuse/core'
1213
import { computed, ref, watch } from 'vue'
1314
import NcButton from '@nextcloud/vue/components/NcButton'
1415
import NcDialog from '@nextcloud/vue/components/NcDialog'
15-
import NcSelectUsers, { type NcSelectUsersModel } from '@nextcloud/vue/components/NcSelectUsers'
16+
import NcSelectUsers from '@nextcloud/vue/components/NcSelectUsers'
1617
import { useAppsStore } from '../store/apps.ts'
1718
import { useGroupsStore } from '../store/groups.ts'
1819

apps/files/src/utils/fileUtils.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
5-
import {
6-
type Node,
75

8-
FileType,
9-
} from '@nextcloud/files'
6+
import type { Node } from '@nextcloud/files'
7+
8+
import { FileType } from '@nextcloud/files'
109
import { n } from '@nextcloud/l10n'
1110

1211
/**

apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@
8787
</template>
8888

8989
<script lang="ts">
90+
import type { PropType } from 'vue'
91+
9092
import { t } from '@nextcloud/l10n'
9193
import {
92-
type PropType,
93-
9494
defineComponent,
9595
} from 'vue'
9696
import NcButton from '@nextcloud/vue/components/NcButton'

apps/files_sharing/src/components/SidebarTabExternal/SidebarTabExternalSectionLegacy.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@
1010
</template>
1111

1212
<script lang="ts" setup>
13-
import {
14-
type Component,
15-
type PropType,
13+
import type { Component, PropType } from 'vue'
1614
15+
import {
1716
computed,
1817
} from 'vue'
1918

apps/files_versions/src/components/VirtualScrolling.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@
2323
</template>
2424

2525
<script lang="ts">
26-
import {
27-
type PropType,
26+
import type { PropType } from 'vue'
2827
29-
defineComponent,
30-
} from 'vue'
28+
import { defineComponent } from 'vue'
3129
import logger from '../utils/logger.ts'
3230
3331
export interface RowItem {

apps/settings/src/components/SettingsPresets/PresetsSelectionForm.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
-->
55

66
<script setup lang="ts">
7+
import type { PresetAppConfigs, PresetIds } from './models.ts'
8+
79
import { t } from '@nextcloud/l10n'
810
import NcCheckboxRadioSwitch from '@nextcloud/vue/components/NcCheckboxRadioSwitch'
911
import AccountGroupOutline from 'vue-material-design-icons/AccountGroupOutline.vue'
@@ -13,7 +15,6 @@ import Crowd from 'vue-material-design-icons/Crowd.vue'
1315
import Domain from 'vue-material-design-icons/Domain.vue'
1416
import MinusCircleOutline from 'vue-material-design-icons/MinusCircleOutline.vue'
1517
import SchoolOutline from 'vue-material-design-icons/SchoolOutline.vue'
16-
import { type PresetAppConfigs, type PresetIds } from './models.ts'
1718
1819
defineProps({
1920
presets: {

build/eslint-baseline-legacy.json

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"apps/files/src/components/FilesNavigationListItem.vue": {
3-
"@nextcloud/no-deprecated-library-props": {
4-
"count": 1
2+
"apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue": {
3+
"vue/custom-event-name-casing": {
4+
"count": 3
55
}
66
},
77
"apps/files_sharing/src/components/SharingEntryQuickShareSelect.vue": {
@@ -24,21 +24,11 @@
2424
"count": 1
2525
}
2626
},
27-
"apps/settings/src/components/GroupListItem.vue": {
28-
"@nextcloud/no-deprecated-library-props": {
29-
"count": 1
30-
}
31-
},
3227
"apps/settings/src/components/Users/NewUserDialog.vue": {
3328
"vue/no-mutating-props": {
3429
"count": 2
3530
}
3631
},
37-
"apps/settings/src/views/UserManagementNavigation.vue": {
38-
"@nextcloud/no-deprecated-library-props": {
39-
"count": 4
40-
}
41-
},
4232
"apps/workflowengine/src/components/Check.vue": {
4333
"vue/no-mutating-props": {
4434
"count": 3
@@ -52,12 +42,12 @@
5242
"count": 1
5343
}
5444
},
55-
"core/src/views/Login.vue": {
56-
"vue/multi-word-component-names": {
45+
"core/src/components/UnifiedSearch/UnifiedSearchModal.vue": {
46+
"vue/custom-event-name-casing": {
5747
"count": 1
5848
}
5949
},
60-
"core/src/views/Setup.vue": {
50+
"core/src/views/Login.vue": {
6151
"vue/multi-word-component-names": {
6252
"count": 1
6353
}

core/src/views/PublicPageMenu.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
</template>
4242

4343
<script setup lang="ts">
44+
import type { Ref } from 'vue'
45+
4446
import { loadState } from '@nextcloud/initial-state'
4547
import { t } from '@nextcloud/l10n'
4648
import { useIsSmallMobile } from '@nextcloud/vue/composables/useIsMobile'
4749
import { spawnDialog } from '@nextcloud/vue/functions/dialog'
4850
import {
49-
type Ref,
50-
5151
computed,
5252
ref,
5353
} from 'vue'

0 commit comments

Comments
 (0)