-
-
Save sathiyaseelan/ef0b40eab3ea5fcacd49a72a2a8be976 to your computer and use it in GitHub Desktop.
Git hook to avoid commit debug lines (binding.pry console.log debugger...)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Validates that you don't commit forbidden keywords to the repo | |
# You can skip this checking with 'git commit --no-verify' | |
exit 0 if ARGV.include?('--no-verify') | |
# Update this list with your own forbidden keywords | |
KEYWORDS = %w(binding.pry console.log debugger) | |
def red(text) "\033[31m#{text}\033[0m"; end | |
def yellow(text) "\033[33m#{text}\033[0m"; end | |
# list all the files staged for commit | |
files_changed = %x(git diff --cached --name-only --).split | |
# search files for keywords | |
%x(git grep -q -E "#{KEYWORDS.join('|')}" #{files_changed.join(' ')}) | |
if $?.exitstatus.zero? | |
puts "# Check following lines:" | |
files_changed.each do |file| | |
KEYWORDS.each do |keyword| | |
%x(git grep -q #{keyword} #{file}) | |
if $?.exitstatus.zero? | |
line = %x(git grep -n #{keyword} #{file} | awk -F ":" '{print $2}').split.join(', ') | |
puts "#\t#{red(file)}:#{line} contains #{yellow keyword}." | |
end | |
end | |
end | |
puts "Use 'git commit --no-verify' to skip this validation" | |
exit 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment