mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
Use stdin for Selene Lua linter (#4183)
When I added Selene as a linter, I wasn't aware it had the option to process stdin using `-`.
This commit is contained in:
@@ -5,15 +5,15 @@ After:
|
||||
call ale#assert#TearDownLinterTest()
|
||||
|
||||
Execute(The lua selene command callback should return the correct default string):
|
||||
AssertLinter 'selene', ale#Escape('selene') . ' --display-style=json %s'
|
||||
AssertLinter 'selene', ale#Escape('selene') . ' --display-style=json -'
|
||||
|
||||
Execute(The lua selene command callback should let you set options):
|
||||
let g:ale_lua_selene_options = '--num-threads 2'
|
||||
|
||||
AssertLinter 'selene',
|
||||
\ ale#Escape('selene') . ' --num-threads 2 --display-style=json %s'
|
||||
\ ale#Escape('selene') . ' --num-threads 2 --display-style=json -'
|
||||
|
||||
Execute(The selene executable should be configurable):
|
||||
let g:ale_lua_selene_executable = 'selene.sh'
|
||||
|
||||
AssertLinter 'selene.sh', ale#Escape('selene.sh') . ' --display-style=json %s'
|
||||
AssertLinter 'selene.sh', ale#Escape('selene.sh') . ' --display-style=json -'
|
||||
|
||||
Reference in New Issue
Block a user