mirror of
https://github.com/danbee/dotfiles-local
synced 2025-03-04 08:49:07 +00:00
22 lines
347 B
VimL
22 lines
347 B
VimL
let g:ale_echo_msg_format = '[%linter%] %s [%severity%]'
|
|
|
|
let g:ale_fixers = {
|
|
\ 'elixir': [
|
|
\ 'mix_format'
|
|
\ ],
|
|
\ 'javascript': [
|
|
\ 'remove_trailing_lines',
|
|
\ 'trim_whitespace',
|
|
\ 'eslint',
|
|
\ 'prettier'
|
|
\ ],
|
|
\ 'json': [
|
|
\ 'jq'
|
|
\ ],
|
|
\ 'ruby': [
|
|
\ 'remove_trailing_lines',
|
|
\ 'trim_whitespace',
|
|
\ 'rubocop'
|
|
\ ]
|
|
\}
|