summaryrefslogtreecommitdiff
path: root/ale_linters/swift/sourcekitlsp.vim
blob: a403dcc11ede8a47b445c012287c845c35900e6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" 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',
\})