Disable grammar check for lemminx

This commit is contained in:
2023-09-19 16:09:03 +02:00
parent 7230e8cffc
commit 3dc2e7801d
+3 -1
View File
@@ -14,6 +14,8 @@
limitations under the License. limitations under the License.
]] ]]
-- spec: https://github.com/eclipse/lemminx/blob/main/docs/Configuration.md
return { return {
enabled = true, enabled = true,
lspconfig = { lspconfig = {
@@ -39,7 +41,7 @@ return {
spaceBeforeEmptyCloseLine = true, -- insert whitespace before self closing tag end bracket spaceBeforeEmptyCloseLine = true, -- insert whitespace before self closing tag end bracket
}, },
validation = { validation = {
noGrammar = "hint", noGrammar = "ignore",
enabled = true, enabled = true,
schema = true, schema = true,
} }