]> source.dussan.org Git - jquery.git/commitdiff
put "use strict" where it belongs so that this works for jshint 0.5.x up to 0.9.x
authorjaubourg <j@ubourg.net>
Tue, 16 Oct 2012 14:10:17 +0000 (10:10 -0400)
committerjaubourg <j@ubourg.net>
Tue, 16 Oct 2012 14:10:17 +0000 (10:10 -0400)
grunt.js

index 2ddb3001ce48ca93e005e9e7e8de201e43e35805..4d94fd242703032a9f0a1f220372de1e3f760951 100644 (file)
--- 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