aboutsummaryrefslogtreecommitdiffstats
path: root/grunt.js
diff options
context:
space:
mode:
authorjaubourg <j@ubourg.net>2012-10-16 10:10:17 -0400
committerjaubourg <j@ubourg.net>2012-10-16 10:10:17 -0400
commit605a38073e657d929eed06b3211baee1cd29c787 (patch)
tree4ef6a39f6dfcd326c2f1a6a91d7f0c892805a8e0 /grunt.js
parent6ba563887a572efc25e60623b5e1301864cff303 (diff)
downloadjquery-605a38073e657d929eed06b3211baee1cd29c787.tar.gz
jquery-605a38073e657d929eed06b3211baee1cd29c787.zip
put "use strict" where it belongs so that this works for jshint 0.5.x up to 0.9.x
Diffstat (limited to 'grunt.js')
-rw-r--r--grunt.js2
1 files changed, 2 insertions, 0 deletions
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