grunt-merge-conflict
Version:
Grunt plugin for preventing you from accidentally comitting a merge conflict into your project
21 lines (19 loc) • 386 B
JavaScript
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadTasks('tasks');
grunt.initConfig({
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'Gruntfile.js',
'lib/*.js',
'tasks/*.js',
'test/**/*.js'
]
}
});
grunt.registerTask('default', ['jshint']);
};
;