- Remove duplicate lucide-svelte package, keep @lucide/svelte - Move schema from src/lib/server/ to src/lib/db/ for better organization - Add path aliases to svelte.config.js (, , , , ) - Add ESLint and Prettier configuration with 2-space indentation - Update all imports to use new schema location and icon package
10 lines
222 B
Plaintext
10 lines
222 B
Plaintext
{
|
|
"useTabs": false,
|
|
"tabWidth": 2,
|
|
"singleQuote": true,
|
|
"trailingComma": "none",
|
|
"printWidth": 100,
|
|
"plugins": ["prettier-plugin-svelte"],
|
|
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
|
|
}
|