diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-04-09 11:45:09 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-04-09 11:59:31 -0400 |
commit | 0fa52c11cbfe70780648b99717f1dd3502befaff (patch) | |
tree | 9cd6bfc3b17ae21385aeebd32205d7281934fa17 /Gruntfile.js | |
parent | 0afc92bd73a61a0279a419647458e6ed89638ae0 (diff) | |
download | jquery-0fa52c11cbfe70780648b99717f1dd3502befaff.tar.gz jquery-0fa52c11cbfe70780648b99717f1dd3502befaff.zip |
Update jshintrc to conform to new style guide. Conform to onevar and unused in tests. Fixes #13755.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 5e2917373..9d9f85a20 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -406,7 +406,7 @@ module.exports = function( grunt ) { // Process files for distribution grunt.registerTask( "dist", function() { - var flags, paths, stored; + var stored, flags, paths, fs, nonascii; // Check for stored destination paths // ( set in dist/.destination.json ) @@ -421,8 +421,8 @@ module.exports = function( grunt ) { }); // Ensure the dist files are pure ASCII - var fs = require("fs"), - nonascii = false; + fs = require("fs"); + nonascii = false; distpaths.forEach(function( filename ) { var i, c, map, |