mirror of
https://github.com/dense-analysis/ale
synced 2025-01-14 19:14:58 +00:00
be69af2705
Default `g:ale_disable_lsp` to a new mode `'auto'` by default. With this setting applied, ALE will now check for the presence of nvim-lspconfig and automatically turn off particular LSP linters if already configured via nvim-lspconfig. For users that do not use `nvim-lspconfig`, everything should work as before.
15 lines
476 B
VimL
15 lines
476 B
VimL
" Author: Dan Loman <https://github.com/namolnad>
|
|
" Description: Support for sourcekit-lsp https://github.com/apple/sourcekit-lsp
|
|
|
|
call ale#Set('sourcekit_lsp_executable', 'sourcekit-lsp')
|
|
|
|
call ale#linter#Define('swift', {
|
|
\ 'name': 'sourcekitlsp',
|
|
\ 'aliases': ['sourcekit'],
|
|
\ 'lsp': 'stdio',
|
|
\ 'executable': {b -> ale#Var(b, 'sourcekit_lsp_executable')},
|
|
\ 'command': '%e',
|
|
\ 'project_root': function('ale#swift#FindProjectRoot'),
|
|
\ 'language': 'swift',
|
|
\})
|