githooks.js 212 B

123456789101112131415
  1. /* jshint node: true */
  2. 'use strict';
  3. module.exports = function( grunt ) {
  4. grunt.config.merge( {
  5. githooks: {
  6. all: {
  7. 'pre-commit': 'default'
  8. }
  9. }
  10. } );
  11. grunt.loadNpmTasks( 'grunt-githooks' );
  12. };