lsp: remove duplicate settings validation (#13789)

This commit is contained in:
Michael Lingelbach
2021-01-18 18:02:30 -08:00
committed by GitHub
parent f9b3110549
commit d6d4e3d1ae

View File

@@ -230,7 +230,6 @@ local function validate_client_config(config)
before_init = { config.before_init, "f", true }; before_init = { config.before_init, "f", true };
offset_encoding = { config.offset_encoding, "s", true }; offset_encoding = { config.offset_encoding, "s", true };
flags = { config.flags, "t", true }; flags = { config.flags, "t", true };
settings = { config.settings, "t", true };
} }
-- TODO(remove-callbacks) -- TODO(remove-callbacks)