add format check, update prettier rules, apply rules consistently

This commit is contained in:
Gregor Vostrak
2025-07-29 18:58:31 +02:00
parent b11672732b
commit cb30487a21
323 changed files with 3728 additions and 5579 deletions

View File

@@ -1,24 +1,19 @@
<script setup lang="ts">
import InputLabel from "../../../packages/ui/src/Input/InputLabel.vue";
import FormSection from "@/Components/FormSection.vue";
import InputLabel from '../../../packages/ui/src/Input/InputLabel.vue';
import FormSection from '@/Components/FormSection.vue';
import { usePreferredColorScheme } from '@vueuse/core';
import { themeSetting } from "@/utils/theme";
const preferredColor = usePreferredColorScheme()
import { themeSetting } from '@/utils/theme';
const preferredColor = usePreferredColorScheme();
</script>
<template>
<FormSection>
<template #title> Theme</template>
<template #description>
Choose how you want solidtime to look on your device
</template>
<template #description> Choose how you want solidtime to look on your device </template>
<template #form>
<div class="col-span-6 sm:col-span-4">
<InputLabel for="theme" value="Theme" />
<select
@@ -31,15 +26,14 @@ const preferredColor = usePreferredColorScheme()
<option value="light">Light</option>
<option value="dark">Dark</option>
</select>
<p v-if="themeSetting === 'system'" class="w-full text-sm text-text-tertiary font-medium mt-2">
<p
v-if="themeSetting === 'system'"
class="w-full text-sm text-text-tertiary font-medium mt-2">
System default: {{ preferredColor }}
</p>
</div>
</template>
</FormSection>
</template>
<style scoped>
</style>
<style scoped></style>