1
0
mirror of https://github.com/amix/vimrc synced 2025-07-12 14:15:00 +08:00
This commit is contained in:
geezus
2021-06-30 12:00:07 -05:00
parent 43c7efba8d
commit 3afe70fe5a
1529 changed files with 3053 additions and 3018 deletions

0
sources_non_forked/ale/ale_linters/ruby/brakeman.vim Normal file → Executable file
View File

0
sources_non_forked/ale/ale_linters/ruby/debride.vim Normal file → Executable file
View File

View File

0
sources_non_forked/ale/ale_linters/ruby/reek.vim Normal file → Executable file
View File

0
sources_non_forked/ale/ale_linters/ruby/rubocop.vim Normal file → Executable file
View File

0
sources_non_forked/ale/ale_linters/ruby/ruby.vim Normal file → Executable file
View File

0
sources_non_forked/ale/ale_linters/ruby/solargraph.vim Normal file → Executable file
View File

5
sources_non_forked/ale/ale_linters/ruby/sorbet.vim Normal file → Executable file
View File

@ -1,14 +1,17 @@
call ale#Set('ruby_sorbet_executable', 'srb')
call ale#Set('ruby_sorbet_options', '')
call ale#Set('ruby_sorbet_enable_watchman', 0)
function! ale_linters#ruby#sorbet#GetCommand(buffer) abort
let l:executable = ale#Var(a:buffer, 'ruby_sorbet_executable')
let l:options = ale#Var(a:buffer, 'ruby_sorbet_options')
let l:enable_watchman = ale#Var(a:buffer, 'ruby_sorbet_enable_watchman')
return ale#ruby#EscapeExecutable(l:executable, 'srb')
\ . ' tc'
\ . (!empty(l:options) ? ' ' . l:options : '')
\ . ' --lsp --disable-watchman'
\ . ' --lsp'
\ . (l:enable_watchman ? '' : ' --disable-watchman')
endfunction
call ale#linter#Define('ruby', {

0
sources_non_forked/ale/ale_linters/ruby/standardrb.vim Normal file → Executable file
View File