style: reorder imports alphabetically

This commit is contained in:
2026-08-08 15:23:30 +02:00
parent d3703005a0
commit b08a76fbc2
23 changed files with 43 additions and 45 deletions
@@ -15,8 +15,8 @@ limitations under the License.
-->
<script setup>
import Icon from '@/features/icons/components/Icon.vue';
import { useSettingsStore } from '../stores/settingsStore';
import Icon from '@/features/icons/components/Icon.vue';
import { computed, ref, useId, watch } from 'vue';
import { useI18n } from 'vue-i18n';
@@ -15,10 +15,8 @@ limitations under the License.
-->
<script setup>
import Icon from '@/features/icons/components/Icon.vue';
import { useSettingsStore } from '../stores/settingsStore';
import Icon from '@/features/icons/components/Icon.vue';
import { computed, ref, useId, watch } from 'vue';
import { useI18n } from 'vue-i18n';
@@ -15,11 +15,10 @@ limitations under the License.
-->
<script setup>
import Switch from './Switch.vue';
import SettingsInput from './SettingsInput.vue';
import Selection from './Selection.vue';
import SettingsInput from './SettingsInput.vue';
import SettingsPageLink from './SettingsPageLink.vue';
import Switch from './Switch.vue';
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
@@ -15,8 +15,8 @@ limitations under the License.
-->
<script setup>
import Icon from '@/features/icons/components/Icon.vue';
import { useSettingsPage } from '../composables/useSettingsPage';
import Icon from '@/features/icons/components/Icon.vue';
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
@@ -14,9 +14,9 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import { useSettingsStore } from '../../stores/settingsStore.js';
import Selection from '../Selection.vue';
import { mountComponent } from '@/test-utils/mountComponent.js';
import { useSettingsStore } from '../../stores/settingsStore.js';
import { expect, describe, test } from 'vitest';
import { nextTick } from 'vue';
@@ -14,9 +14,9 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import { useSettingsStore } from '../../stores/settingsStore.js';
import SettingsInput from '../SettingsInput.vue';
import { mountComponent } from '@/test-utils/mountComponent';
import { useSettingsStore } from '../../stores/settingsStore.js';
import { describe, expect, test } from 'vitest';
import { nextTick } from 'vue';
@@ -14,10 +14,10 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import { useSettingsStore } from '../../stores/settingsStore.js';
import Switch from '../Switch.vue';
import { mountComponent } from '@/test-utils/mountComponent.js';
import { useSettingsStore } from '../../stores/settingsStore.js';
import { expect, describe, test } from 'vitest';
import { describe, expect, test } from 'vitest';
import { nextTick } from 'vue';
const getWrapper = function getWrapper({
@@ -14,8 +14,14 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import { describe, test, expect } from 'vitest';
import { validateSettingsConfig, validateEntry, validateSelectionOptions, assertType, assertString } from '../settingsValidator';
import {
assertString,
assertType,
validateEntry,
validateSelectionOptions,
validateSettingsConfig
} from '../settingsValidator';
import { describe, expect, test } from 'vitest';
describe('settingsValidator', () => {
describe('validateSettingsConfig', () => {
+2 -2
View File
@@ -15,11 +15,11 @@ limitations under the License.
-->
<script setup>
import LeftSidebarLayout from '@/layouts/LeftSidebarLayout.vue';
import SettingsPage from '../components/SettingsPage.vue';
import SettingsPage from '../components/SettingsPage.vue';
import settingsConfiguration from '../config.js';
import { getSettingRecursively } from '../utils/getSetting.js';
import LeftSidebarLayout from '@/layouts/LeftSidebarLayout.vue';
import { computed, onMounted, ref, watch } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRoute, useRouter } from 'vue-router';