scarlet-init
Version:
Scarlet-init is a scaffolding tool used to automate Scarlet plugin creation.
19 lines (17 loc) • 428 B
JavaScript
module.exports = function(grunt){
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
files: ['gruntfile.js', 'index.js', 'lib/**/*.js','tests/**/*.js'],
options: {
globals: {
console: true,
module: true
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.registerTask('default', ['jshint']);
};