@@ -0,0 +1,13 @@
+'use strict';
+
+module.exports = function( grunt ) {
+ grunt.config.merge( {
+ githooks: {
+ all: {
+ 'pre-commit': 'default'
+ }
+ } );
+ grunt.loadNpmTasks( 'grunt-githooks' );
+};
@@ -14,12 +14,6 @@ module.exports = function( grunt ) {
options: {
'excludeFiles': lintIgnores
}
- },
-
- githooks: {
- all: {
- 'pre-commit': 'default'
- }
} );