1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00

Add ALE fixers for Ruby and Javascript

This commit is contained in:
Daniel Barber 2018-03-18 16:51:12 -04:00
parent 9190d51bd6
commit 977080204e
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

View File

@ -0,0 +1,12 @@
let g:ale_fixers = {
\ 'javascript': [
\ 'remove_trailing_lines',
\ 'trim_whitespace',
\ 'eslint'
\ ],
\ 'ruby': [
\ 'remove_trailing_lines',
\ 'trim_whitespace',
\ 'rubocop'
\ ]
\}