2014-02-09 12:23:52 -06:00
|
|
|
/*jshint node:true */
|
|
|
|
module.exports = function ( grunt ) {
|
|
|
|
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
|
|
|
|
|
|
|
grunt.initConfig({
|
|
|
|
jshint: {
|
2014-02-09 12:43:41 -06:00
|
|
|
src: ['src/**/*.js']
|
2014-02-09 12:23:52 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
grunt.registerTask('test', ['jshint']);
|
|
|
|
grunt.registerTask('default', ['test']);
|
|
|
|
};
|