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

Move ALE config and add error format

This commit is contained in:
Daniel Barber 2018-11-28 12:55:09 -05:00
parent 0b44494a41
commit 2a0813e0e6
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

View File

@ -1,15 +1,21 @@
let g:ale_echo_msg_format = '[%linter%] %s [%severity%]'
let g:ale_fixers = {
\ 'elixir': [
\ 'mix_format'
\ ],
\ 'javascript': [
\ 'remove_trailing_lines',
\ 'trim_whitespace',
\ 'eslint'
\ 'eslint',
\ 'prettier'
\ ],
\ 'json': [
\ 'jq'
\ ],
\ 'ruby': [
\ 'remove_trailing_lines',
\ 'trim_whitespace',
\ 'rubocop'
\ ],
\ 'json': [
\ 'jq'
\ ]
\}