configure VS Code workspace to use Standard Ruby

This commit is contained in:
Ryan Cavicchioni 2025-03-24 14:58:14 -05:00
parent 54bc100d2a
commit 768a58849d
Signed by: ryanc
SSH Key Fingerprint: SHA256:FEbwJ3JyWHwYNAM8BqctZ/LmHHg1bzfi/huOj7FxlXU

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

@ -0,0 +1,9 @@
{
"[ruby]": {
"editor.defaultFormatter": "Shopify.ruby-lsp"
},
"rubyLsp.formatter": "standard",
"rubyLsp.linters": [
"standard"
],
}