mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
13 lines
204 B
VimL
13 lines
204 B
VimL
let g:ale_fixers = {
|
|
\ 'javascript': [
|
|
\ 'remove_trailing_lines',
|
|
\ 'trim_whitespace',
|
|
\ 'eslint'
|
|
\ ],
|
|
\ 'ruby': [
|
|
\ 'remove_trailing_lines',
|
|
\ 'trim_whitespace',
|
|
\ 'rubocop'
|
|
\ ]
|
|
\}
|