mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
- Install lint-staged to format staged files before commit - Update pre-commit hook to run lint-staged then type-check - Auto-format ts, tsx, js, jsx, json, md, svelte, astro files
3 lines
111 B
JavaScript
3 lines
111 B
JavaScript
export default {
|
|
'*.{ts,tsx,js,jsx,json,md,svelte,astro}': ['prettier --config .prettierrc.json --write'],
|
|
};
|