Skip to content

Instantly share code, notes, and snippets.

@kiran
Forked from mpeteuil/rubocop_pre_commit_hook
Last active February 9, 2016 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kiran/9419729 to your computer and use it in GitHub Desktop.
Save kiran/9419729 to your computer and use it in GitHub Desktop.
forked pre-commit hook for changed ruby files. (whitespace sensitivity in the regex was borking selection)
#!/usr/bin/env ruby
require 'english'
require 'rubocop'
ADDED_OR_MODIFIED = /^\s*(A|AM|M)/.freeze
changed_files = `git status --porcelain`.split(/\n/).
select { |file_name_with_status|
file_name_with_status =~ ADDED_OR_MODIFIED
}.
map { |file_name_with_status|
file_name_with_status.split(' ')[1]
}.
select { |file_name|
File.extname(file_name) == '.rb'
}.join(' ')
system("rubocop #{changed_files}") unless changed_files.empty?
exit $CHILD_STATUS.to_s[-1].to_i
@kiran
Copy link
Author

kiran commented Mar 7, 2014

throw this into .git/pre-commit

@eikes
Copy link

eikes commented Feb 19, 2015

throw it into the hooks folder in the .git folder:

.git/hooks/pre-commit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment