2017-02-10 22:47:56 +00:00
|
|
|
Before:
|
|
|
|
runtime ale_linters/javascript/flow.vim
|
|
|
|
|
|
|
|
After:
|
|
|
|
call ale#linter#Reset()
|
|
|
|
|
|
|
|
Execute(flow should return a command to run if a .flowconfig file exists):
|
|
|
|
silent! cd /testplugin/test
|
|
|
|
:e! flow/a/sub/dummy
|
|
|
|
|
2017-05-08 21:59:25 +00:00
|
|
|
AssertEqual '''flow'' check-contents --respect-pragma --json --from ale %s', ale_linters#javascript#flow#GetCommand(bufnr('%'))
|
2017-02-10 22:47:56 +00:00
|
|
|
|
|
|
|
Execute(flow should not return a command to run if no .flowconfig file exists):
|
|
|
|
silent! cd /testplugin/test
|
|
|
|
:e! flow/b/sub/dummy
|
|
|
|
|
|
|
|
AssertEqual '', ale_linters#javascript#flow#GetCommand(bufnr('%'))
|