Created
January 18, 2016 20:55
-
-
Save sanmiguel/712f9273150e2abae6bc to your computer and use it in GitHub Desktop.
neomake rules for mix test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let g:neomake_elixir_mix_maker = { | |
\ 'args': ['compile'], | |
\ 'errorformat': | |
\ '** %s %f:%l: %m,' . | |
\ '%f:%l: warning: %m' | |
\ } | |
let g:neomake_elixir_test_maker = { | |
\ 'exe': 'mix', | |
\ 'args': ['test'], | |
\ 'errorformat': | |
\ '%Z %f:%l,' . | |
\ '%C ** %m,' . | |
\ '%C %[%^:]%#:%.%#,' . | |
\ '%C %m,' . | |
\ '%E %n)%.%#' | |
\ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment