Move extra_args to the end of the rubocop command #19
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
For some rubocop executables, a
--file
or--path
option might be necessary to target a specific file to run the parser. I myself use a modified form of rubocop-git (with an addition to support the flags above, as well as the--format
flag) instead of the defaultrubocop
command to only look at offenses I have made in my branch.To allow using
rubocop-git
using theg:vimrubocop_rubocop_cmd
, the last argument in the string includes the--file
argument to be paired up with thel:filename
when running the:RuboCop
command.Swapping these arguments should retain the previous functionality just fine, while allowing for the use-case described above.
Note: It was chosen to have
l:extra_args
last in the list versusa:current_args
since a--file
option is more useful to be applied to every call of:RuboCop
instead of on-demand via thea:current_args
.