grunt-sed
Version:
Grunt task for search and replace.
37 lines (32 loc) • 691 B
JavaScript
module.exports = function(grunt) {
grunt.initConfig({
jshint: {
options: {
// enforcing options
curly: true
, forin: true
, newcap: true
, noarg: true
, noempty: true
, nonew: true
, quotmark: true
, undef: true
, unused: true
, trailing: true
, maxlen: 80
// relaxing options
, boss: true
, es5: true
, expr: true
, laxcomma: true
// environments
, node: true
}
, tasks: ['tasks/*.js']
, tests: ['test/*.js']
, gruntfile: ['Gruntfile.js']
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('lint', 'jshint');
};