diff options
author | Dalius Dobravolskas <dalius.dobravolskas@gmail.com> | 2022-04-30 06:33:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-30 12:33:48 +0900 |
commit | 34892186e44b21356c84e1c2e019f96a304c3edc (patch) | |
tree | fe6b13f579b58b7a56f0b0e7ae204c1ce101588f /test | |
parent | d484347fb5f63cd5d4d4da7bf1ba4fc197f668eb (diff) | |
download | ale-34892186e44b21356c84e1c2e019f96a304c3edc.zip |
vscode-json-languageserver support (#4164)
* vscode-json-languageserver-bin support
VSCode JSON languageserver has schema support for linting and
completions.
I have enabled snippets support (`snippetSupport`) even if it is not
fully supported. `label` that comes with completions response can be
used as well.
* Test fix.
* vscode-json-languageserver instead of vscode-json-languageserver-bin
vscode-json-languageserver is more up-to-date (about 1 year old),
vscode-json-languageserver-bin is 4 years old.
* Use git root.
* Documentation update.
* Trying to sort ordering issue.
* One more attempt
* One more attempt
* Uppercase seems to win.
* Clean-up
* Clean-up 2
* Test removed.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_filetype_linter_defaults.vader | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_filetype_linter_defaults.vader b/test/test_filetype_linter_defaults.vader index dad8e5ee..1217e237 100644 --- a/test/test_filetype_linter_defaults.vader +++ b/test/test_filetype_linter_defaults.vader @@ -60,7 +60,7 @@ Execute(The defaults for the inko filetype should be correct): AssertEqual [], GetLinterNames('inko') Execute(The defaults for the json filetype should be correct): - AssertEqual ['jsonlint', 'spectral'], GetLinterNames('json') + AssertEqual ['jsonlint', 'spectral', 'vscodejson'], GetLinterNames('json') let g:ale_linters_explicit = 1 |