Skip to content

Commit

Permalink
Merge pull request #29 from pocke/tslint
Browse files Browse the repository at this point in the history
Support tslint.
  • Loading branch information
osyo-manga committed Jul 22, 2015
2 parents 218db13 + fc7abaf commit 5fdb96b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion autoload/watchdogs.vim
Expand Up @@ -107,7 +107,8 @@ let g:watchdogs#default_config = {
\
\ "typescript/watchdogs_checker" : {
\ "type"
\ : executable("tsc") ? "watchdogs_checker/tsc"
\ : executable("tsc") ? "watchdogs_checker/tsc"
\ : executable("tslint") ? "watchdogs_checker/tslint"
\ : ""
\ },
\
Expand All @@ -117,6 +118,12 @@ let g:watchdogs#default_config = {
\ "errorformat" : '%+A\ %#%f\ %#(%l\\,%c):\ %m,%C%m',
\ },
\
\ "watchdogs_checker/tslint" : {
\ "command" : "tslint",
\ "exec" : "%c %s:p",
\ "errorformat" : '%f[%l\\,\ %c]:\ %m',
\ },
\
\
\ "coffee/watchdogs_checker" : {
\ "type"
Expand Down

0 comments on commit 5fdb96b

Please sign in to comment.