diff options
| -rw-r--r-- | lua/lspconfig/server_configurations/ansiblels.lua | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/lua/lspconfig/server_configurations/ansiblels.lua b/lua/lspconfig/server_configurations/ansiblels.lua index 650e2d91..f6ad2912 100644 --- a/lua/lspconfig/server_configurations/ansiblels.lua +++ b/lua/lspconfig/server_configurations/ansiblels.lua @@ -11,20 +11,22 @@ return { default_config = { cmd = cmd, settings = { - python = { - interpreterPath = 'python', - }, ansible = { - path = 'ansible', - }, - executionEnvironment = { - enabled = false, - }, - validation = { - enabled = true, - lint = { + python = { + interpreterPath = 'python', + }, + ansible = { + path = 'ansible', + }, + executionEnvironment = { + enabled = false, + }, + validation = { enabled = true, - path = 'ansible-lint', + lint = { + enabled = true, + path = 'ansible-lint', + }, }, }, }, |
