Add Sorbet ruby linter and fixer (#2614)

This commit is contained in:
Matthew Lanigan
2019-07-13 12:37:48 -04:00
committed by w0rp
parent 6c47d7fc35
commit abb38955d3
9 changed files with 139 additions and 0 deletions

View 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'