chore(*): adopt project templates

This commit is contained in:
hh
2026-09-09 01:17:12 +02:00
parent 5ec0212af5
commit ccbc167005
33 changed files with 409 additions and 220 deletions
-15
View File
@@ -1,15 +0,0 @@
## Code Principles
- **Simplicity**: Write simple, straightforward code
- **Readability**: Make code easy to understand
- **Performance**: Consider performance without sacrificing readability
- **Maintainability**: Write code that's easy to update
- **Reusability**: Create reusable components and functions
- **Less Code = Less Debt**: Minimize code footprint
- **NEVER write comments** - code should be self-documenting
## Checking commands
After writing code, always run:
```shell
bun check # svelte-check
bun fix # biome linter
```
+1 -1
View File
@@ -4,7 +4,7 @@
{
"hooks": [
{
"command": "bun fix --skip=correctness/noUnusedImports",
"command": "cd frontend && bun run fix --skip=correctness/noUnusedImports",
"type": "command"
}
],