mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-01 09:03:29 +08:00
Add Sorbet ruby linter and fixer (#2614)
This commit is contained in:
27
test/command_callback/test_sorbet_command_callback.vader
Normal file
27
test/command_callback/test_sorbet_command_callback.vader
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
Before:
|
||||
call ale#assert#SetUpLinterTest('ruby', 'sorbet')
|
||||
call ale#test#SetFilename('dummy.rb')
|
||||
|
||||
let g:ale_ruby_sorbet_executable = 'srb'
|
||||
let g:ale_ruby_sorbet_options = ''
|
||||
|
||||
After:
|
||||
call ale#assert#TearDownLinterTest()
|
||||
|
||||
Execute(Executable should default to srb):
|
||||
AssertLinter 'srb', ale#Escape('srb')
|
||||
\ . ' tc --lsp --disable-watchman'
|
||||
|
||||
Execute(Should be able to set a custom executable):
|
||||
let g:ale_ruby_sorbet_executable = 'bin/srb'
|
||||
|
||||
AssertLinter 'bin/srb' , ale#Escape('bin/srb')
|
||||
\ . ' tc --lsp --disable-watchman'
|
||||
|
||||
Execute(Setting bundle appends 'exec srb tc'):
|
||||
let g:ale_ruby_sorbet_executable = 'path to/bundle'
|
||||
|
||||
AssertLinter 'path to/bundle', ale#Escape('path to/bundle')
|
||||
\ . ' exec srb'
|
||||
\ . ' tc --lsp --disable-watchman'
|
||||
Reference in New Issue
Block a user