mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:01:09 +02:00
- shared-auth-stores: delete createSupabaseAuthStore (zero usage across monorepo, all apps use createManaAuthStore). Remove export + types from index.ts. - services: move ollama-metrics-proxy (stub — just a Grafana dashboard JSON) and it-landing (Astro landing page, not a service) to services-archived/ - lint-staged: add services-archived/ to eslint ignore pattern Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
7 lines
275 B
JavaScript
7 lines
275 B
JavaScript
export default {
|
|
'*.{ts,tsx,js,jsx,mjs,cjs}': [
|
|
'eslint --fix --ignore-pattern "apps-archived/**" --ignore-pattern "services-archived/**"',
|
|
'prettier --config .prettierrc.json --write',
|
|
],
|
|
'*.{json,md,svelte,astro}': ['prettier --config .prettierrc.json --write'],
|
|
};
|