diff --git a/.vscode/settings.json b/.vscode/settings.json index 2b4c21de7..89c604d62 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,8 +2,10 @@ // Set this value to `verbose` to see the full JSON content of LSP requests and responses "ruby lsp.trace.server": "off", "[ruby]": { - "editor.defaultFormatter": "Shopify.ruby-lsp", + "editor.defaultFormatter": "Shopify.ruby-lsp" }, + // So features like completion can still be displayed with Sorbet in the dependencies + "rubyLsp.bypassTypechecker": true, "search.exclude": { "**/test/fixtures/prism": true }, @@ -11,30 +13,20 @@ { "languageId": "*", "locale": "en", - "dictionaries": [ - "wordsEn" - ] + "dictionaries": ["wordsEn"] }, { "languageId": "*", "locale": "en-US", - "dictionaries": [ - "wordsEn" - ] + "dictionaries": ["wordsEn"] }, { "languageId": "*", - "dictionaries": [ - "companies", - "softwareTerms", - "misc" - ] + "dictionaries": ["companies", "softwareTerms", "misc"] }, { "languageId": "ruby", - "dictionaries": [ - "ruby" - ] - }, + "dictionaries": ["ruby"] + } ] }