format: apply repo prettier (3.8.1) to the folded skills tree

963 markdown files reformatted with the repository's pinned prettier so
pnpm format:check covers the folded tree like every other repo file.

The formatter's embedded-language pass also normalized code fences
(TS semicolons, closed HTML tags in examples, lowercased CSS hex colors,
one renumbered list that skipped an index). Alphanumeric token deltas vs
the fold commit were audited file-by-file; all are formatter-equivalent
markup normalizations plus the four sanitized skills.
This commit is contained in:
fargo
2026-08-19 14:37:17 -05:00
parent d2eeb64433
commit 1a822493ba
962 changed files with 29594 additions and 27188 deletions
@@ -14,25 +14,25 @@ Nuxt automatically imports Vue APIs, Nuxt composables, and your custom composabl
```vue
<script setup lang="ts">
// No imports needed - all auto-imported
const count = ref(0)
const doubled = computed(() => count.value * 2)
const count = ref(0);
const doubled = computed(() => count.value * 2);
watch(count, (newVal) => {
console.log('Count changed:', newVal)
})
console.log('Count changed:', newVal);
});
onMounted(() => {
console.log('Component mounted')
})
console.log('Component mounted');
});
// Lifecycle hooks
onBeforeMount(() => {})
onUnmounted(() => {})
onBeforeUnmount(() => {})
onBeforeMount(() => {});
onUnmounted(() => {});
onBeforeUnmount(() => {});
// Reactivity
const state = reactive({ name: 'John' })
const shallow = shallowRef({ deep: 'object' })
const state = reactive({ name: 'John' });
const shallow = shallowRef({ deep: 'object' });
</script>
```
@@ -41,28 +41,28 @@ const shallow = shallowRef({ deep: 'object' })
```vue
<script setup lang="ts">
// All auto-imported
const route = useRoute()
const router = useRouter()
const config = useRuntimeConfig()
const appConfig = useAppConfig()
const nuxtApp = useNuxtApp()
const route = useRoute();
const router = useRouter();
const config = useRuntimeConfig();
const appConfig = useAppConfig();
const nuxtApp = useNuxtApp();
// Data fetching
const { data } = await useFetch('/api/data')
const { data: asyncData } = await useAsyncData('key', () => fetchData())
const { data } = await useFetch('/api/data');
const { data: asyncData } = await useAsyncData('key', () => fetchData());
// State
const state = useState('key', () => 'initial')
const cookie = useCookie('token')
const state = useState('key', () => 'initial');
const cookie = useCookie('token');
// Head/SEO
useHead({ title: 'My Page' })
useSeoMeta({ description: 'Page description' })
useHead({ title: 'My Page' });
useSeoMeta({ description: 'Page description' });
// Request helpers (SSR)
const headers = useRequestHeaders()
const event = useRequestEvent()
const url = useRequestURL()
const headers = useRequestHeaders();
const event = useRequestEvent();
const url = useRequestURL();
</script>
```
@@ -73,32 +73,32 @@ const url = useRequestURL()
```ts
// composables/useCounter.ts
export function useCounter(initial = 0) {
const count = ref(initial)
const increment = () => count.value++
const decrement = () => count.value--
return { count, increment, decrement }
const count = ref(initial);
const increment = () => count.value++;
const decrement = () => count.value--;
return { count, increment, decrement };
}
```
```ts
// composables/useAuth.ts
export function useAuth() {
const user = useState<User | null>('user', () => null)
const isLoggedIn = computed(() => !!user.value)
const user = useState<User | null>('user', () => null);
const isLoggedIn = computed(() => !!user.value);
async function login(credentials: Credentials) {
user.value = await $fetch('/api/auth/login', {
method: 'POST',
body: credentials,
})
});
}
async function logout() {
await $fetch('/api/auth/logout', { method: 'POST' })
user.value = null
await $fetch('/api/auth/logout', { method: 'POST' });
user.value = null;
}
return { user, isLoggedIn, login, logout }
return { user, isLoggedIn, login, logout };
}
```
@@ -107,8 +107,8 @@ export function useAuth() {
```vue
<script setup lang="ts">
// Auto-imported - no import statement needed
const { count, increment } = useCounter(10)
const { user, isLoggedIn, login } = useAuth()
const { count, increment } = useCounter(10);
const { user, isLoggedIn, login } = useAuth();
</script>
```
@@ -129,7 +129,7 @@ Re-export nested composables:
```ts
// composables/index.ts
export { useHelper } from './nested/helper'
export { useHelper } from './nested/helper';
```
Or configure scanning:
@@ -143,7 +143,7 @@ export default defineNuxtConfig({
'composables/**', // Scan all nested
],
},
})
});
```
## Utilities (`app/utils/`)
@@ -151,22 +151,22 @@ export default defineNuxtConfig({
```ts
// utils/format.ts
export function formatDate(date: Date) {
return date.toLocaleDateString()
return date.toLocaleDateString();
}
export function formatCurrency(amount: number) {
return new Intl.NumberFormat('en-US', {
style: 'currency',
currency: 'USD',
}).format(amount)
}).format(amount);
}
```
```vue
<script setup lang="ts">
// Auto-imported
const date = formatDate(new Date())
const price = formatCurrency(99.99)
const date = formatDate(new Date());
const price = formatCurrency(99.99);
</script>
```
@@ -175,21 +175,21 @@ const price = formatCurrency(99.99)
```ts
// server/utils/db.ts
export function useDb() {
return createDbConnection()
return createDbConnection();
}
// server/utils/auth.ts
export function verifyToken(token: string) {
return jwt.verify(token, process.env.JWT_SECRET)
return jwt.verify(token, process.env.JWT_SECRET);
}
```
```ts
// server/api/users.ts
export default defineEventHandler(() => {
const db = useDb() // Auto-imported
return db.query('SELECT * FROM users')
})
const db = useDb(); // Auto-imported
return db.query('SELECT * FROM users');
});
```
## Third-party Package Imports
@@ -213,7 +213,7 @@ export default defineNuxtConfig({
},
],
},
})
});
```
## Explicit Imports
@@ -222,7 +222,7 @@ Use `#imports` alias when needed:
```vue
<script setup lang="ts">
import { ref, computed, useFetch } from '#imports'
import { ref, computed, useFetch } from '#imports';
</script>
```
@@ -232,7 +232,7 @@ Nuxt composables must be called in valid context:
```ts
// ❌ Wrong - module level
const config = useRuntimeConfig()
const config = useRuntimeConfig();
export function useMyComposable() {}
```
@@ -240,12 +240,13 @@ export function useMyComposable() {}
```ts
// ✅ Correct - inside function
export function useMyComposable() {
const config = useRuntimeConfig()
return { apiBase: config.public.apiBase }
const config = useRuntimeConfig();
return { apiBase: config.public.apiBase };
}
```
**Valid contexts:**
- `<script setup>` block
- `setup()` function
- `defineNuxtPlugin()` callback
@@ -265,10 +266,10 @@ export default defineNuxtConfig({
imports: {
scan: false,
},
})
});
```
<!--
<!--
Source references:
- https://nuxt.com/docs/guide/concepts/auto-imports
- https://nuxt.com/docs/directory-structure/app/composables