You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
884 B
VimL
38 lines
884 B
VimL
" Author: w0rp <devw0rp@gmail.com>
|
|
" Description: Fixing files with eslint.
|
|
|
|
function! s:FindConfig(buffer) abort
|
|
for l:filename in [
|
|
\ '.eslintrc.js',
|
|
\ '.eslintrc.yaml',
|
|
\ '.eslintrc.yml',
|
|
\ '.eslintrc.json',
|
|
\ '.eslintrc',
|
|
\ 'package.json',
|
|
\]
|
|
let l:config = ale#path#FindNearestFile(a:buffer, l:filename)
|
|
|
|
if !empty(l:config)
|
|
return l:config
|
|
endif
|
|
endfor
|
|
|
|
return ''
|
|
endfunction
|
|
|
|
function! ale#fixers#eslint#Fix(buffer) abort
|
|
let l:executable = ale#handlers#eslint#GetExecutable(a:buffer)
|
|
let l:config = s:FindConfig(a:buffer)
|
|
|
|
if empty(l:config)
|
|
return 0
|
|
endif
|
|
|
|
return {
|
|
\ 'command': ale#node#Executable(a:buffer, l:executable)
|
|
\ . ' --config ' . ale#Escape(l:config)
|
|
\ . ' --fix %t',
|
|
\ 'read_temporary_file': 1,
|
|
\}
|
|
endfunction
|