mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 15:41:09 +02:00
and documentation - Fix Docker build paths in maerchenzauber and manadeck backends - Add comprehensive CI/CD documentation (private repo solution, type analysis) - Configure Prettier with proper plugins for Astro/Svelte - Update .gitignore to exclude .hive-mind and .claude-flow - Fix Turbo config for Presi app Related to cicd/integration branch - Priority 1 & 2 fixes
21 lines
324 B
JSON
21 lines
324 B
JSON
{
|
|
"useTabs": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"printWidth": 100,
|
|
"plugins": ["prettier-plugin-svelte", "prettier-plugin-astro"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.svelte",
|
|
"options": {
|
|
"parser": "svelte"
|
|
}
|
|
},
|
|
{
|
|
"files": "*.astro",
|
|
"options": {
|
|
"parser": "astro"
|
|
}
|
|
}
|
|
]
|
|
}
|