26c3aea6 by Adam Heath

Rename 'common' to 'config'.

1 parent 69da8842
......@@ -4,8 +4,8 @@ module.exports = function(grunt) {
/* global require */
'use strict';
var common = {};
common.jshint = {
var config = {};
config.jshint = {
options: {
},
all: [
......@@ -16,5 +16,5 @@ module.exports = function(grunt) {
};
var montyPython = require('./grunt-monty-python')(grunt);
montyPython.createConfig(common);
montyPython.createConfig(config);
};
......