mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-21 02:22:13 +08:00
Close #1504 - Add an option for removing --respect-pragma for flow
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
Before:
|
||||
runtime ale_linters/javascript/flow.vim
|
||||
|
||||
call ale#test#SetDirectory('/testplugin/test')
|
||||
|
||||
After:
|
||||
unlet! b:ale_javascript_flow_use_respect_pragma
|
||||
|
||||
call ale#test#RestoreDirectory()
|
||||
call ale#linter#Reset()
|
||||
call ale#semver#ResetVersionCache()
|
||||
@@ -15,6 +18,16 @@ Execute(flow should return a command to run if a .flowconfig file exists):
|
||||
\ . ' check-contents --respect-pragma --json --from ale %s',
|
||||
\ ale_linters#javascript#flow#GetCommand(bufnr('%'), [])
|
||||
|
||||
Execute(flow should not use the respect pragma argument if the option is off):
|
||||
call ale#test#SetFilename('flow/a/sub/dummy')
|
||||
|
||||
let b:ale_javascript_flow_use_respect_pragma = 0
|
||||
|
||||
AssertEqual
|
||||
\ ale#Escape('flow')
|
||||
\ . ' check-contents --json --from ale %s',
|
||||
\ ale_linters#javascript#flow#GetCommand(bufnr('%'), [])
|
||||
|
||||
Execute(flow should should not use --respect-pragma for old versions):
|
||||
call ale#test#SetFilename('flow/a/sub/dummy')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user