style: auto-format codebase with Prettier

Applied formatting to 1487+ files using pnpm format:write
  - TypeScript/JavaScript files
  - Svelte components
  - Astro pages
  - JSON configs
  - Markdown docs

  13 files still need manual review (Astro JSX comments)
This commit is contained in:
Wuesteon 2025-11-27 18:33:16 +01:00
parent 0241f5554c
commit d36b321d9d
3952 changed files with 661498 additions and 739751 deletions

View file

@ -1,41 +1,35 @@
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV",
"MANA_CORE_AUTH_URL",
"JWT_PUBLIC_KEY",
"AZURE_OPENAI_ENDPOINT",
"AZURE_OPENAI_API_KEY"
],
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": [
"dist/**",
"build/**",
".next/**",
".svelte-kit/**",
".astro/**"
]
},
"lint": {
"dependsOn": ["^lint"],
"outputs": []
},
"type-check": {
"dependsOn": ["^type-check"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"clean": {
"cache": false
}
}
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV",
"MANA_CORE_AUTH_URL",
"JWT_PUBLIC_KEY",
"AZURE_OPENAI_ENDPOINT",
"AZURE_OPENAI_API_KEY"
],
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**", ".next/**", ".svelte-kit/**", ".astro/**"]
},
"lint": {
"dependsOn": ["^lint"],
"outputs": []
},
"type-check": {
"dependsOn": ["^type-check"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"clean": {
"cache": false
}
}
}