summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/npmgroovylint.vim
blob: 39e43cf600ceb589e2d503496c47eb7b9e86d963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" Author: lucas-str <lucas.sturelle@ik.me>
" Description: Integration of npm-groovy-lint for Groovy files.

call ale#Set('groovy_npmgroovylint_fix_options', '--fix')

function! ale#fixers#npmgroovylint#Fix(buffer) abort
    let l:executable = ale#Var(a:buffer, 'groovy_npmgroovylint_executable')
    let l:options = ale#Var(a:buffer, 'groovy_npmgroovylint_fix_options')

    return {
    \   'command': ale#Escape(l:executable)
    \       . (!empty(l:options) ? ' ' . l:options : '')
    \       . ' %t',
    \   'read_temporary_file': 1,
    \}
endfunction