ale/autoload/ale/fixers/dhall_lint.vim

12 lines
296 B
VimL
Raw Normal View History

" Author: toastal <toastal@posteo.net>
2020-08-02 05:31:06 +00:00
" Description: Dhalls built-in linter/formatter
function! ale#fixers#dhall_lint#Fix(buffer) abort
let l:executable = ale#dhall#GetExecutableWithOptions(a:buffer)
return {
\ 'command': l:executable
\ . ' lint'
2020-08-02 05:31:06 +00:00
\}
endfunction