Fix #246 Don't run flow if there's no .flowconfig
This commit is contained in:
parent
926cd1a953
commit
49f7ce4f6d
6 changed files with 202 additions and 47 deletions
17
test/test_flow_command.vader
Normal file
17
test/test_flow_command.vader
Normal file
|
@ -0,0 +1,17 @@
|
|||
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
|
||||
|
||||
AssertEqual 'flow check-contents --respect-pragma --json --from ale %s', ale_linters#javascript#flow#GetCommand(bufnr('%'))
|
||||
|
||||
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('%'))
|
Loading…
Add table
Add a link
Reference in a new issue