I'd like to check code committed to my remote git repository with PHP CodeSniffer and reject it if there are any problems code standards. Does anyone have an example how to use it on git remote repository or maybe example how to use it with pre-receive hook? Thanks.
|
|
|
Maybe this point you in the right direction: (Orginal from: http://www.squatlabs.de/versionierung/arbeiten-git-hooks in German)
You will have to edit the exec line exec('php -l... to point to your codesniffer installation. |
|||||
|
|
This might help: http://github.com/s0enke/git-hooks/tree/master/phpcs-pre-commit/ |
|||
|
|
|
I developed a pre-receive git hook based on PHPCodeSniffer to check the code styling of PHP, JavaScript and CSS files. My script is available from Github : https://github.com/blueicefield/PHP_CodeSniffer_GIT_Hook |
|||
|
|
Ok I found the solution :) This is proof of concept code :) for pre-receive hook:
This example code will only print blobs received by remote repository but it's enough to get someone needing something like that going (I hope). You can put every blob in some temporary file run whatever you need on this file delete the file and so on... |
|||
|
|
