UNPKG

jsc

Version:

Javascript complexity tool

20 lines (17 loc) 465 B
/*global module:false*/ module.exports = function (grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jshint: { options: { jshintrc: '.jshintrc', }, 'default': { src: ['*.js', 'src/*.js'] } } }); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-bump'); grunt.registerTask('default', ['jshint']); };