Add support for selene Lua linter (#4169)

This commit is contained in:
zandr
2022-04-29 22:11:12 -04:00
committed by GitHub
parent 3348222abc
commit 57e16957e0
7 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
Before:
call ale#assert#SetUpLinterTest('lua', 'selene')
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'
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'
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'