Files
picoforge/deno.json
T
Suyog Tandel 406e0213d2 feat: add svelte code formatting config and orgnaise frontend code
- Added code formatting config for svelte, ts, js and svelte.ts files
- Reorganised the monolith +page.svelte into different reactive components using runes. Placed in src/lib/
- Formatted the frontend code for consistency.
- Added env variable in release workflow so that system lib libpcsclite.so.1 is not included in appimage bundle.
- Added minimum app window width and height config in tauri.conf.json
2026-01-09 02:36:06 +05:30

22 lines
312 B
JSON

{
"unstable": ["fmt-component"],
"fmt": {
"useTabs": false,
"indentWidth": 2,
"lineWidth": 120,
"include": ["src"],
"exclude": [
"src/app.html",
"src/app.css",
"src/lib/components/ui",
"src/lib/utils.ts",
"src/lib/hooks/is-mobile.svelte.ts"
]
}
}