mirror of
https://github.com/librekeys/picoforge.git
synced 2026-07-28 08:01:19 -07:00
- 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
22 lines
312 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
|