configure VS Code workspace to use Standard Ruby

This commit is contained in:
2025-03-24 14:58:14 -05:00
parent 54bc100d2a
commit 768a58849d

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"
],
}