diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2013-04-09 11:45:09 -0400 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2013-04-09 12:21:54 -0400 |
commit | d2435ead36de361cd6094731f57de076320ec45d (patch) | |
tree | 45454a7d73370c70ed86803488425fa12e1594f9 /Gruntfile.js | |
parent | c6a694e1c262acb941b7fd86663f186656496bbc (diff) | |
download | jquery-d2435ead36de361cd6094731f57de076320ec45d.tar.gz jquery-d2435ead36de361cd6094731f57de076320ec45d.zip |
Update jshintrc to conform to new style guide. Conform to onevar and unused in tests. Fixes #13755.
Conflicts:
src/.jshintrc
src/data.js
test/unit/attributes.js
test/unit/core.js
test/unit/data.js
test/unit/event.js
test/unit/manipulation.js
test/unit/queue.js
test/unit/traversing.js
test/unit/wrap.js
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 cdddc78c6..a48639482 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -411,7 +411,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 ) @@ -426,8 +426,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, |