feat: sync project configuration from remote

- Updated .gitignore to remove yarn exclusion
- Added .vscode settings for Prettier formatting and Rust support
- Added .yarnrc.yml for workspace hoisting configuration
- Preserved all website directory work while syncing project improvements
This commit is contained in:
Ramon Perez 2025-07-30 12:24:05 +10:00
parent a2aac5a63a
commit 469a0814f3
4 changed files with 15 additions and 3 deletions

3
.gitignore vendored
View File

@ -80,6 +80,3 @@ combined-output/
# vscode
.vscode/
# yarn
.yarnrc.yml

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"esbenp.prettier-vscode"
]
}

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

@ -0,0 +1,7 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
}
}

3
.yarnrc.yml Normal file
View File

@ -0,0 +1,3 @@
nmHoistingLimits: workspaces
nodeLinker: node-modules
checksumBehavior: update