Gruntfile.js
383 Bytes
/* global module */
module.exports = function(grunt) {
/* global require */
'use strict';
var config = {};
config.jshint = {
options: {
},
_all: [
'grunt-monty-python.js',
],
browserOptions: {
},
};
var montyPython = require('grunt-monty-python')(grunt);
montyPython.createConfig(config);
};