From: jaubourg Date: Tue, 16 Oct 2012 14:10:17 +0000 (-0400) Subject: put "use strict" where it belongs so that this works for jshint 0.5.x up to 0.9.x X-Git-Tag: 1.9.0b1~199 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=605a38073e657d929eed06b3211baee1cd29c787;p=jquery.git put "use strict" where it belongs so that this works for jshint 0.5.x up to 0.9.x --- diff --git a/grunt.js b/grunt.js index 2ddb3001c..4d94fd242 100644 --- a/grunt.js +++ b/grunt.js @@ -12,6 +12,8 @@ var child_process = require("child_process"); module.exports = function( grunt ) { + "use strict"; + // readOptionalJSON // by Ben Alman // https://gist.github.com/2876125