summaryrefslogtreecommitdiff
path: root/ale_linters/ruby/rubocop.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/ruby/rubocop.vim')
-rw-r--r--ale_linters/ruby/rubocop.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/ruby/rubocop.vim b/ale_linters/ruby/rubocop.vim
index c1aa9536..05763b55 100644
--- a/ale_linters/ruby/rubocop.vim
+++ b/ale_linters/ruby/rubocop.vim
@@ -32,9 +32,9 @@ function! ale_linters#ruby#rubocop#Handle(buffer, lines) abort
endfunction
function! ale_linters#ruby#rubocop#GetCommand(buffer) abort
- return 'rubocop --format emacs --force-exclusion ' .
- \ g:ale_ruby_rubocop_options .
- \ ' --stdin ' . bufname(a:buffer)
+ return 'rubocop --format emacs --force-exclusion '
+ \ . g:ale_ruby_rubocop_options
+ \ . ' --stdin ' . bufname(a:buffer)
endfunction
" Set this option to change Rubocop options.