From 8e6abaeebd010fde3f4083e5d10b38d8ad5e3ae0 Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Thu, 11 Jan 2024 16:26:07 +0000 Subject: [PATCH] Enable bypassTypechcker by default Because this project has Sorbet as a dependency, this setting is required for testing features like completion. And instead of asking every contributor to manually turn it on before testing, which could easily be missed, we can just turn it on by default. --- .vscode/settings.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vscode/settings.json b/.vscode/settings.json index 2b4c21de78..60034a625f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,6 +4,8 @@ "[ruby]": { "editor.defaultFormatter": "Shopify.ruby-lsp", }, + // So features like completion can still be displayed with Sorbet's + "rubyLsp.bypassTypechecker": true, "search.exclude": { "**/test/fixtures/prism": true },