[lsp] Add Swift / SourceKit-LSP support (#2420)

* [linter] Add LSP support for Swift via sourcekit-lsp
This commit is contained in:
Dan Loman
2019-04-08 08:25:30 -07:00
committed by w0rp
parent 9a0ece1ecb
commit 864d0861e4
7 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
" 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',
\ 'lsp': 'stdio',
\ 'executable': {b -> ale#Var(b, 'sourcekit_lsp_executable')},
\ 'command': '%e',
\ 'project_root': function('ale#swift#FindProjectRoot'),
\ 'language': 'swift',
\})