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:
parent
a2aac5a63a
commit
469a0814f3
3
.gitignore
vendored
3
.gitignore
vendored
@ -80,6 +80,3 @@ combined-output/
|
|||||||
|
|
||||||
# vscode
|
# vscode
|
||||||
.vscode/
|
.vscode/
|
||||||
|
|
||||||
# yarn
|
|
||||||
.yarnrc.yml
|
|
||||||
5
.vscode/extensions.json
vendored
Normal file
5
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"recommendations": [
|
||||||
|
"esbenp.prettier-vscode"
|
||||||
|
]
|
||||||
|
}
|
||||||
7
.vscode/settings.json
vendored
Normal file
7
.vscode/settings.json
vendored
Normal 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
3
.yarnrc.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
nmHoistingLimits: workspaces
|
||||||
|
nodeLinker: node-modules
|
||||||
|
checksumBehavior: update
|
||||||
Loading…
x
Reference in New Issue
Block a user