diff options
author | Eddie Lebow <elebow@users.noreply.github.com> | 2019-08-13 01:52:13 -0400 |
---|---|---|
committer | Eddie Lebow <elebow@users.noreply.github.com> | 2019-08-13 01:52:13 -0400 |
commit | 58e8d32d790ea3bb370b928581d5ec163cc7e930 (patch) | |
tree | 866dc623899b7cd271b940fe6779307094726a0e /ale_linters/ruby/reek.vim | |
parent | 28c93ab1854ef41a46855401cc4addbaf7dfb9d4 (diff) | |
download | ale-58e8d32d790ea3bb370b928581d5ec163cc7e930.zip |
Move ale#handlers#ruby#EscapeExecutable to ale#ruby#EscapeExecutable
This function is generally applicable to Ruby, not just handling linter
output.
Diffstat (limited to 'ale_linters/ruby/reek.vim')
-rw-r--r-- | ale_linters/ruby/reek.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/ruby/reek.vim b/ale_linters/ruby/reek.vim index e39e366f..226b452e 100644 --- a/ale_linters/ruby/reek.vim +++ b/ale_linters/ruby/reek.vim @@ -14,7 +14,7 @@ function! ale_linters#ruby#reek#GetCommand(buffer, version) abort \ ? ' --stdin-filename %s' \ : '' - return ale#handlers#ruby#EscapeExecutable(l:executable, 'reek') + return ale#ruby#EscapeExecutable(l:executable, 'reek') \ . ' -f json --no-progress --no-color --force-exclusion' \ . l:display_name_args endfunction |