Add yaml-language-server support for YAML (#2874) (#4029)

This commit is contained in:
Jeffrey Lau
2022-01-07 22:57:29 +08:00
committed by GitHub
parent 76bd059371
commit 5087246c82
7 changed files with 111 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
Before:
call ale#assert#SetUpLinterTest('yaml', 'ls')
After:
call ale#assert#TearDownLinterTest()
Execute(should set correct defaults):
AssertLinter 'yaml-language-server', ale#Escape('yaml-language-server') . ' --stdio'
Execute(should set correct LSP values):
call ale#test#SetFilename('../test-files/yaml/test.yaml')
AssertLSPLanguage 'yaml'
AssertLSPOptions {}
AssertLSPConfig {}
AssertLSPProject ale#path#Simplify(g:dir . '/../test-files/yaml')
Execute(should accept configuration settings):
AssertLSPConfig {}
let b:ale_yaml_ls_config = {'yaml': {'hover': v:false, 'completion': v:true}}
AssertLSPConfig {'yaml': {'hover': v:false, 'completion': v:true}}