mirror of https://github.com/dense-analysis/ale
Fix #2263 - detailed Flow errors should show the original message
This commit is contained in:
parent
067601e9db
commit
4d426bf287
|
@ -156,7 +156,8 @@ function! ale_linters#javascript#flow#Handle(buffer, lines) abort
|
||||||
\}
|
\}
|
||||||
|
|
||||||
if has_key(l:error, 'extra')
|
if has_key(l:error, 'extra')
|
||||||
let l:errorToAdd.detail = s:GetDetails(l:error)
|
let l:errorToAdd.detail = l:errorToAdd.text
|
||||||
|
\ . "\n" . s:GetDetails(l:error)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
call add(l:output, l:errorToAdd)
|
call add(l:output, l:errorToAdd)
|
||||||
|
|
|
@ -499,7 +499,8 @@ Execute(The flow handler should handle extra errors):
|
||||||
\ 'col': 35,
|
\ 'col': 35,
|
||||||
\ 'type': 'E',
|
\ 'type': 'E',
|
||||||
\ 'text': 'props of React element `New`: This type is incompatible with object type',
|
\ 'text': 'props of React element `New`: This type is incompatible with object type',
|
||||||
\ 'detail': 'Property `setVector` is incompatible: number This type is incompatible with function type ',
|
\ 'detail': 'props of React element `New`: This type is incompatible with object type'
|
||||||
|
\ . "\nProperty `setVector` is incompatible: number This type is incompatible with function type ",
|
||||||
\ }
|
\ }
|
||||||
\]
|
\]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue