Skip to content

Commit

Permalink
Temporarily disabling the dco check
Browse files Browse the repository at this point in the history
Signed-off-by: Murat Ereksel <murat.ereksel@imgtec.com>
  • Loading branch information
Murat Ereksel committed Dec 15, 2016
1 parent 95a4741 commit 42905bd
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
module.exports = function(grunt) {

grunt.initConfig({
dco: {
path: "/"
},
// dco: { path: "/" },
jshint: {
files: ['Gruntfile.js', 'index.js', 'lib/**/*.js', 'test/**/*.js'], /* Options are defined within .jshintrc */
}
});

/* Load */
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-dco');
// grunt.loadNpmTasks('grunt-dco');

/* Register */
grunt.registerTask('default', ['jshint', 'dco']);
grunt.registerTask('test', ['jshint', 'dco']);
grunt.registerTask('default', ['jshint']);
grunt.registerTask('test', ['jshint']);

};

0 comments on commit 42905bd

Please sign in to comment.