mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:41:09 +02:00
All app compute servers have been consolidated into apps/api/ (unified Hono/Bun server). Old servers moved to apps/*/apps/server-archived/. Archived: cards, chat, contacts, context, calendar, guides, moodlit, mukke, news, nutriphi, picture, planta, presi, questions, storage, todo, traces Still active: uload (separate domain), memoro (Supabase-based) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 lines
354 B
JavaScript
7 lines
354 B
JavaScript
export default {
|
|
'*.{ts,tsx,js,jsx,mjs,cjs}': [
|
|
'eslint --fix --ignore-pattern "apps-archived/**" --ignore-pattern "services-archived/**" --ignore-pattern "**/web-archived/**" --ignore-pattern "**/server-archived/**"',
|
|
'prettier --config .prettierrc.json --write',
|
|
],
|
|
'*.{json,md,svelte,astro}': ['prettier --config .prettierrc.json --write'],
|
|
};
|