Files
opensprinkler-weather/Gruntfile.js
Samer Albahra f5c1e65b71 More cleanup
2018-07-22 19:33:57 -05:00

22 lines
395 B
JavaScript

module.exports = function( grunt ) {
// Load node-modules;
grunt.loadNpmTasks( "grunt-contrib-jshint" );
// Project configuration.
grunt.initConfig( {
pkg: grunt.file.readJSON( "package.json" ),
jshint: {
main: [ "Gruntfile.js", "server.js", "routes/*.js" ],
options: {
jshintrc: true
}
}
} );
// Default task(s).
grunt.registerTask( "default", [ "jshint" ] );
};