Skip to content

Commit 3f0d10f

Browse files
author
Murat Ereksel
committed
Temporarily disabling the dco check
1 parent fa224e8 commit 3f0d10f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Gruntfile.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
module.exports = function(grunt) {
22

33
grunt.initConfig({
4-
dco: {
5-
path: "/"
6-
},
4+
// dco: {
5+
// path: "/"
6+
// },
77
jshint: {
88
files: ['Gruntfile.js', 'index.js', 'lib/**/*.js', 'test/**/*.js'], /* Options are defined within .jshintrc */
99
}
1010
});
1111

1212
/* Load */
1313
grunt.loadNpmTasks('grunt-contrib-jshint');
14-
grunt.loadNpmTasks('grunt-dco');
14+
// grunt.loadNpmTasks('grunt-dco');
1515

1616
/* Register */
17-
grunt.registerTask('default', ['jshint', 'dco']);
18-
grunt.registerTask('test', ['jshint', 'dco']);
17+
grunt.registerTask('default'); // ['jshint', 'dco']
18+
grunt.registerTask('test'); // ['jshint', 'dco']
1919

2020
};

0 commit comments

Comments
 (0)