diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-15 12:52:08 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-15 12:52:08 +0100 |
commit | cab68cba250fb81a4d20ffd637925a708bb46e8a (patch) | |
tree | 14a917e41e977aa5cd591ebdb2a2eda7c29530f3 /ale_linters/ruby/rubocop.vim | |
parent | c9a5d9845b9bff9174c4bb3b67a9f7bfda190ee6 (diff) | |
download | ale-cab68cba250fb81a4d20ffd637925a708bb46e8a.zip |
Make code more consistent
Diffstat (limited to 'ale_linters/ruby/rubocop.vim')
-rw-r--r-- | ale_linters/ruby/rubocop.vim | 6 |
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. |