summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorJustin Powell <jpowellcs@gmail.com>2018-10-26 10:40:02 -0500
committerJustin Powell <jpowellcs@gmail.com>2018-10-26 10:40:02 -0500
commitb7e0321890b74052ae50b41986453941c5378ecf (patch)
tree0631ad424c17c4396077df523635d0cd040eb498 /autoload
parent86c035466becd57f9bca6ea8e704a3388936ac33 (diff)
downloadale-b7e0321890b74052ae50b41986453941c5378ecf.zip
closes #1580 add force exclusion to rubocop fixer
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/fixers/rubocop.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/fixers/rubocop.vim b/autoload/ale/fixers/rubocop.vim
index a4613817..33ba6887 100644
--- a/autoload/ale/fixers/rubocop.vim
+++ b/autoload/ale/fixers/rubocop.vim
@@ -9,7 +9,7 @@ function! ale#fixers#rubocop#GetCommand(buffer) abort
return ale#handlers#ruby#EscapeExecutable(l:executable, 'rubocop')
\ . (!empty(l:config) ? ' --config ' . ale#Escape(l:config) : '')
\ . (!empty(l:options) ? ' ' . l:options : '')
- \ . ' --auto-correct %t'
+ \ . ' --auto-correct --force-exclusion %t'
endfunction
function! ale#fixers#rubocop#Fix(buffer) abort