2016-10-12 13:43:29 +00:00
|
|
|
" Author: Sol Bekic https://github.com/s-ol
|
|
|
|
" Description: luacheck linter for lua files
|
|
|
|
|
|
|
|
let g:ale_lua_luacheck_executable =
|
|
|
|
\ get(g:, 'ale_lua_luacheck_executable', 'luacheck')
|
|
|
|
|
2017-04-29 05:57:08 +00:00
|
|
|
let g:ale_lua_luacheck_options =
|
|
|
|
\ get(g:, 'ale_lua_luacheck_options', '')
|
|
|
|
|
2017-04-15 12:35:54 +00:00
|
|
|
function! ale_linters#lua#luacheck#GetExecutable(buffer) abort
|
2017-04-16 00:24:08 +00:00
|
|
|
return ale#Var(a:buffer, 'lua_luacheck_executable')
|
2017-04-15 12:35:54 +00:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#lua#luacheck#GetCommand(buffer) abort
|
2017-05-12 08:20:16 +00:00
|
|
|
return ale#Escape(ale_linters#lua#luacheck#GetExecutable(a:buffer))
|
2017-04-29 05:57:08 +00:00
|
|
|
\ . ' ' . ale#Var(a:buffer, 'lua_luacheck_options')
|
2017-04-15 12:35:54 +00:00
|
|
|
\ . ' --formatter plain --codes --filename %s -'
|
|
|
|
endfunction
|
|
|
|
|
2017-01-22 14:54:57 +00:00
|
|
|
function! ale_linters#lua#luacheck#Handle(buffer, lines) abort
|
2016-10-12 13:43:29 +00:00
|
|
|
" Matches patterns line the following:
|
|
|
|
"
|
|
|
|
" artal.lua:159:17: (W111) shadowing definition of loop variable 'i' on line 106
|
|
|
|
" artal.lua:182:7: (W213) unused loop variable 'i'
|
2017-07-01 23:20:59 +00:00
|
|
|
let l:pattern = '^.*:\(\d\+\):\(\d\+\): (\([WE]\)\(\d\+\)) \(.\+\)$'
|
2016-10-12 13:43:29 +00:00
|
|
|
let l:output = []
|
|
|
|
|
2017-04-17 23:35:53 +00:00
|
|
|
for l:match in ale#util#GetMatches(a:lines, l:pattern)
|
2016-10-12 13:43:29 +00:00
|
|
|
call add(l:output, {
|
|
|
|
\ 'lnum': l:match[1] + 0,
|
|
|
|
\ 'col': l:match[2] + 0,
|
2017-07-01 23:20:59 +00:00
|
|
|
\ 'text': l:match[3] . l:match[4] . ': ' . l:match[5],
|
2016-10-12 13:43:29 +00:00
|
|
|
\ 'type': l:match[3],
|
|
|
|
\})
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return l:output
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('lua', {
|
|
|
|
\ 'name': 'luacheck',
|
2017-04-15 12:35:54 +00:00
|
|
|
\ 'executable_callback': 'ale_linters#lua#luacheck#GetExecutable',
|
|
|
|
\ 'command_callback': 'ale_linters#lua#luacheck#GetCommand',
|
2016-10-12 13:43:29 +00:00
|
|
|
\ 'callback': 'ale_linters#lua#luacheck#Handle',
|
|
|
|
\})
|