UNPKG

webmaker-loginapi

Version:

Mozilla Webmaker SSO helper & integration module

18 lines (14 loc) 321 B
module.exports = function( grunt ) { grunt.initConfig({ pkg: grunt.file.readJSON( "package.json" ), jshint: { files: [ "Gruntfile.js", "index.js", "test/*.js" ] } }); grunt.loadNpmTasks( "grunt-contrib-jshint" ); grunt.registerTask( "default", [ "jshint" ]); };