feat: add VSCode settings for improved development experience; remove Typing component and adjust layout in MessageContainer and index pages

This commit is contained in:
2025-09-03 13:37:42 +02:00
parent 3e7aaba2f3
commit 5d9b1080dd
4 changed files with 26 additions and 40 deletions

20
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
"todo-tree.tree.scanMode": "workspace only",
"todo-tree.tree.disableCompactFolders": false,
"todo-tree.tree.showCountsInTree": false,
"todo-tree.tree.showBadges": true,
"files.associations": {
"*.css": "tailwindcss"
},
"editor.quickSuggestions": {
"strings": "on"
},
"tailwindCSS.classAttributes": ["class", "ui"],
"tailwindCSS.experimental.classRegex": [
["ui:\\s*{([^)]*)\\s*}", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
],
"i18n-ally.localesPaths": [
"locales"
],
"i18n-ally.keystyle": "nested"
}