brocakun / drupal-pre-commit

A Drupal pre-commit hook to filter php, js, and css syntax errors. This script also checks the file(s) to make sure that the Drupal coding standard is being followed.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Git Pre-Commit Hook Setup:

Gitter

  1. Rename pre-commit.sample to pre-commit. The file is located in {GitRootDir}/.git/hooks

  2. Replace the content with the attached file.

  3. Make sure that the file has an execute permission.

$ sudo chmod +x /path/to/.git/hooks/pre-commit

Requirements:

You need to have a Code Sniffer installed before using this pre-commit script. To install.

For Debian-based systems:

$ sudo apt-get install php-pear

For Mac OS:

http://jason.pureconcepts.net/2012/10/install-pear-pecl-mac-os-x/

Or see the general installation guidelines:

http://pear.php.net/manual/en/installation.getting.php

$ sudo pear update-channels
$ sudo pear install PHP_CodeSniffer
$ sudo ln -sv /path/to/coder/coder_sniffer/Drupal $(pear config-get php_dir)/PHP/CodeSniffer/Standards/Drupal

Basically, the idea in #4 is to link/include the Drupal's code sniffer module to the standard PHP Code Sniffer. Here is a sample/actual command for #4:

$ sudo ln -sv /home/ranelpadon/dev/cnngod7/html/sites/all/modules/contribs/coder/coder_sniffer/Drupal $(pear config-get php_dir)/PHP/CodeSniffer/Standards/Drupal

The $(pear config-get php_dir) part in the #4 command will be usually evaluated in Ubuntu as /usr/share/php

To make your Drupal code sniffer module global and not dependent on any Drupal project you can put the module in Drush home folder.

$ cd ~/.drush
$ drush dl coder
$ sudo ln -sv ~/.drush/coder/coder_sniffer/Drupal $(pear config-get php_dir)/PHP/CodeSniffer/Standards/Drupal

Usage:

The pre-commit hook will only run when using git commit

If the commit contains any violations of the following type:

  1. PHP syntax error
  2. PHP coding standard
  3. JavaScript coding standard
  4. CSS coding standard

it will exit before the commit get indexed and will display the offending file(s).

it will display the line of code and the filename that contain bad code. The developer must resolve the problem first in order to stage the commit.

If you're really sure that it is ok to commit the changes without resolving the coding standard problem detected by the script, you can skip or bypass the validation by using --no-verify

$ git commit -am "#1452 Commit message | Bypassing validation process" --no-verify


This is optional and not required by pre-commit.

Install Esprima as JS validator.

To install Esprima:

sudo npm -g install esprima

To manually run Esprima from commandline interface.

  1. esvalidate foo.js - For single file
  2. esvalidate foo.js bar.js - For multiple files

For Geany IDE user:

  1. Open any JavaScript file (*.js)
  2. Go to menu Build > Set Build Commands
  3. At JavaScript Commands, click on the first "Set menu item label" button, type in "Esprima"
  4. For the command, type in esvalidate %f
  5. For the working directory, type in %d

To use it (e.g., in Geany IDE):

  1. Build > Esprima

Creative Commons License
Drupal Pre Commit Filter by Gerald Villorente is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported License.
Based on a work at http://www.niden.net/2011/11/git-pre-commit-another-check-to-ensure.html.

NOTE:

Any any case that the pre-commit is jumping to Step #3, you have to update your precommit $LIST variable to remove \#. So from

LIST=$( git status | grep -e '\#.*\(modified\|added\|new file\)' | grep -v '\#.*\(features\|contribs\|devel\)' )

to

LIST=$( git status | grep -e '.*\(modified\|added\|new file\)' | grep -v '.*\(features\|contribs\|devel\)' )

DISCUSSION CHANNEL:

https://gitter.im/geraldvillorente/drupal-pre-commit

About

A Drupal pre-commit hook to filter php, js, and css syntax errors. This script also checks the file(s) to make sure that the Drupal coding standard is being followed.

License:Other


Languages

Language:Shell 100.0%