diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2024-11-18 21:45:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-18 21:45:34 +0000 |
commit | c36f877f8d98f9756154e26809c614d6749b3fd1 (patch) | |
tree | 2ed76e8ce537a62efd4812a35c9cdf519abad29d /tests/integration | |
parent | 19bbf83e47e4f98a45fe1c735dd2cdab80b99eca (diff) |
fix(lsp): ignore editor indent settings if deno.json is present (#26912)
Diffstat (limited to 'tests/integration')
-rw-r--r-- | tests/integration/lsp_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/lsp_tests.rs b/tests/integration/lsp_tests.rs index a5b0ee247..8eaccb548 100644 --- a/tests/integration/lsp_tests.rs +++ b/tests/integration/lsp_tests.rs @@ -11680,7 +11680,7 @@ fn lsp_format_with_config() { }, "options": { "tabSize": 2, - "insertSpaces": false + "insertSpaces": true, } }), ); |