Update errorformat for typescript/tsc.
This commit is contained in:
parent
9e0e7e085e
commit
2fd1b4a7c4
@ -1,6 +1,6 @@
|
|||||||
"============================================================================
|
"============================================================================
|
||||||
"File: typescript.vim
|
"File: typescript.vim
|
||||||
"Description: TypeScript syntax checker. For TypeScript v0.8.0
|
"Description: TypeScript syntax checker
|
||||||
"Maintainer: Bill Casarin <bill@casarin.ca>
|
"Maintainer: Bill Casarin <bill@casarin.ca>
|
||||||
"============================================================================
|
"============================================================================
|
||||||
|
|
||||||
@ -21,11 +21,17 @@ function! SyntaxCheckers_typescript_tsc_GetLocList()
|
|||||||
\ 'filetype': 'typescript',
|
\ 'filetype': 'typescript',
|
||||||
\ 'subchecker': 'tsc' })
|
\ 'subchecker': 'tsc' })
|
||||||
|
|
||||||
let errorformat = '%f %#(%l\,%c): %m'
|
let errorformat =
|
||||||
|
\ '%f %#(%l\,%c): error %m,' .
|
||||||
|
\ '%f %#(%l\,%c): %m,' .
|
||||||
|
\ '%Eerror %m,' .
|
||||||
|
\ '%C %m'
|
||||||
|
|
||||||
return SyntasticMake({
|
return SyntasticMake({
|
||||||
\ 'makeprg': makeprg,
|
\ 'makeprg': makeprg,
|
||||||
\ 'errorformat': errorformat })
|
\ 'errorformat': errorformat,
|
||||||
|
\ 'defaults': {'bufnr': bufnr("")},
|
||||||
|
\ 'postprocess': ['sort'] })
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
||||||
|
Loading…
Reference in New Issue
Block a user