Skip to content
/ checker Public
forked from qwert666/checker

A collection of modules for which every is designed to check syntax (mainly) on files to be commited via git.

Notifications You must be signed in to change notification settings

rindek/checker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Checker

A collection of modules for which every is designed to check syntax in files to be commited via git.

Usage

Install

Checker is available in rubygems, so you just need to do:

gem install checker

If you are using bundler, you can add it to your project via Gemfile file (best to put it under :development group):

group :development do
  gem 'checker'
end

After installing the gem please follow Git hook section for further details.

Git hook

prepare-commit-msg hook

If you want every commit be appended with checker approved icon (:checkered_flag:) add to your .git/hooks/prepare-commit-msg following:

#!/bin/bash
checker

if [ $? == 1 ]; then
  exit 1
fi

echo ":checkered_flag:" >> $1

pre-commit hook

To just check your source code every time you commit, add to your .git/hooks/pre-commit line:

#!/bin/bash
checker

Use only either one hook.

Don't forget to make the hooks files executable:

chmod +x .git/hooks/pre-commit
chmod +x .git/hooks/prepare-commit-msg

Now checker will halt the commit if it finds problem with source code:

Checking app/models/user.rb...
FAIL app/models/user.rb found occurence of 'binding.pry'
46:binding.pry

Advanced usage

To check only specific filetypes on commit, use git config :

git config checker.check 'ruby, haml, coffeescript'

Available options are: ruby, haml, pry, coffeescript, sass

Dependencies

For various modules to work you may need to install additional dependencies:

About

A collection of modules for which every is designed to check syntax (mainly) on files to be commited via git.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%