summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/dhall_lint.vim
blob: 149a6581d2c5e883cbdd8b0d168e199e295fc54c (plain)
1
2
3
4
5
6
7
8
9
10
11
" Author: toastal <toastal@posteo.net>
" Description: Dhall’s 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'
    \}
endfunction