Rename 'common' to 'config'.
Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -4,8 +4,8 @@ module.exports = function(grunt) { | ... | @@ -4,8 +4,8 @@ module.exports = function(grunt) { |
4 | /* global require */ | 4 | /* global require */ |
5 | 'use strict'; | 5 | 'use strict'; |
6 | 6 | ||
7 | var common = {}; | 7 | var config = {}; |
8 | common.jshint = { | 8 | config.jshint = { |
9 | options: { | 9 | options: { |
10 | }, | 10 | }, |
11 | all: [ | 11 | all: [ |
... | @@ -16,5 +16,5 @@ module.exports = function(grunt) { | ... | @@ -16,5 +16,5 @@ module.exports = function(grunt) { |
16 | }; | 16 | }; |
17 | 17 | ||
18 | var montyPython = require('./grunt-monty-python')(grunt); | 18 | var montyPython = require('./grunt-monty-python')(grunt); |
19 | montyPython.createConfig(common); | 19 | montyPython.createConfig(config); |
20 | }; | 20 | }; | ... | ... |
-
Please register or sign in to post a comment