summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-05-18 09:22:34 +0100
committerw0rp <devw0rp@gmail.com>2017-05-18 09:22:34 +0100
commitc41afa2b0dd3ca44d6c40bd31af11c70bebed97a (patch)
tree2f81fe8353104ce1f8150a4c45b3e72854470dff /ale_linters
parent2fd4db91ceedaadcd83a94312449c05350abaa6c (diff)
downloadale-c41afa2b0dd3ca44d6c40bd31af11c70bebed97a.zip
Clean up the rubocop file a little
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/ruby/rubocop.vim55
1 files changed, 26 insertions, 29 deletions
diff --git a/ale_linters/ruby/rubocop.vim b/ale_linters/ruby/rubocop.vim
index 786e1af6..f8b07250 100644
--- a/ale_linters/ruby/rubocop.vim
+++ b/ale_linters/ruby/rubocop.vim
@@ -1,6 +1,32 @@
" Author: ynonp - https://github.com/ynonp
" Description: rubocop for Ruby files
+" Set this option to change Rubocop options.
+if !exists('g:ale_ruby_rubocop_options')
+ " let g:ale_ruby_rubocop_options = '--lint'
+ let g:ale_ruby_rubocop_options = ''
+endif
+
+if !exists('g:ale_ruby_rubocop_executable')
+ let g:ale_ruby_rubocop_executable = 'rubocop'
+endif
+
+function! ale_linters#ruby#rubocop#GetExecutable(buffer) abort
+ return ale#Var(a:buffer, 'ruby_rubocop_executable')
+endfunction
+
+function! ale_linters#ruby#rubocop#GetCommand(buffer) abort
+ let l:executable = ale#Var(a:buffer, 'ruby_rubocop_executable')
+ let l:exec_args = l:executable =~? 'bundle$'
+ \ ? ' exec rubocop'
+ \ : ''
+
+ return ale#Escape(l:executable) . l:exec_args
+ \ . ' --format emacs --force-exclusion '
+ \ . ale#Var(a:buffer, 'ruby_rubocop_options')
+ \ . ' --stdin ' . bufname(a:buffer)
+endfunction
+
function! ale_linters#ruby#rubocop#Handle(buffer, lines) abort
" Matches patterns line the following:
"
@@ -24,35 +50,6 @@ function! ale_linters#ruby#rubocop#Handle(buffer, lines) abort
return l:output
endfunction
-function! ale_linters#ruby#rubocop#GetCommand(buffer) abort
- let l:unescaped = ale#Var(a:buffer, 'ruby_rubocop_executable')
- let l:executable = ale#Escape(l:unescaped)
- if l:unescaped =~? 'bundle$'
- let l:executable = l:executable . ' exec rubocop'
- endif
- return l:executable
- \ . ' --format emacs --force-exclusion '
- \ . ale#Var(a:buffer, 'ruby_rubocop_options')
- \ . ' --stdin ' . bufname(a:buffer)
-endfunction
-
-function! ale_linters#ruby#rubocop#GetExecutable(buffer) abort
- let l:executable = ale#Var(a:buffer, 'ruby_rubocop_executable')
- if executable(l:executable)
- return l:executable
- endif
-endfunction
-
-" Set this option to change Rubocop options.
-if !exists('g:ale_ruby_rubocop_options')
- " let g:ale_ruby_rubocop_options = '--lint'
- let g:ale_ruby_rubocop_options = ''
-endif
-
-if !exists('g:ale_ruby_rubocop_executable')
- let g:ale_ruby_rubocop_executable = 'rubocop'
-endif
-
call ale#linter#Define('ruby', {
\ 'name': 'rubocop',
\ 'executable_callback': 'ale_linters#ruby#rubocop#GetExecutable',