Skip to content

Commit b558a25

Browse files
committed
refactor: run npm run lint:fix -- --quiet
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent a410535 commit b558a25

8 files changed

Lines changed: 19 additions & 14 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
import type { Node } from '@nextcloud/files'
2+
13
/**
24
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
35
* SPDX-License-Identifier: AGPL-3.0-or-later
46
*/
57
import {
6-
type Node,
7-
88
FileType,
99
} from '@nextcloud/files'
1010
import { n } from '@nextcloud/l10n'

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
33
- SPDX-License-Identifier: AGPL-3.0-or-later
44
-->
5-
5+
<!-- eslint-disable vue/custom-event-name-casing -->
66
<template>
77
<div>
88
<!-- Password and expiration summary -->
@@ -87,10 +87,12 @@
8787
</template>
8888

8989
<script lang="ts">
90+
/* eslint-disable vue/custom-event-name-casing */
91+
92+
import type { PropType } from 'vue'
93+
9094
import { t } from '@nextcloud/l10n'
9195
import {
92-
type PropType,
93-
9496
defineComponent,
9597
} from 'vue'
9698
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
</template>
2424

2525
<script lang="ts">
26-
import {
27-
type PropType,
26+
import type { PropType } from 'vue'
2827
28+
import {
2929
defineComponent,
3030
} from 'vue'
3131
import logger from '../utils/logger.ts'

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: {

core/src/components/UnifiedSearch/UnifiedSearchModal.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,8 @@
253253
</template>
254254

255255
<script lang="ts">
256+
/* eslint-disable vue/custom-event-name-casing */
257+
256258
import type { FocusTrap } from 'focus-trap'
257259
import type { CategorySearchParams } from '../../services/UnifiedSearchController.ts'
258260

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)