From 8a430b36987c98433fd8d9a8035df0d9ec73cb87 Mon Sep 17 00:00:00 2001
From: Chris Rebert <chris.rebert@hulu.com>
Date: Sat, 27 Jul 2013 21:33:11 -0700
Subject: [PATCH 1/2] workaround possible bug in grunt-contrib-jshint

---
 Gruntfile.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Gruntfile.js b/Gruntfile.js
index 0e4fc244b6..0da0e834f6 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -26,6 +26,7 @@ module.exports = function(grunt) {
         },
         jshint: {
             options: {
+                ignores: [],// HACK: workaround https://github.com/gruntjs/grunt-contrib-jshint/issues/86
                 jshintrc: 'js/.jshintrc'
             },
             gruntfile: {
-- 
GitLab


From 880f43221d0f0820d208afcb05f295c6a0afa27a Mon Sep 17 00:00:00 2001
From: Chris Rebert <chris.rebert@hulu.com>
Date: Sat, 27 Jul 2013 21:33:41 -0700
Subject: [PATCH 2/2] tweak Gruntfile.js so it passes jshint

---
 Gruntfile.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Gruntfile.js b/Gruntfile.js
index 0da0e834f6..dd0cc96009 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -1,4 +1,6 @@
+/* jshint node: true */
 module.exports = function(grunt) {
+    "use strict";
 
     // Project configuration.
     grunt.initConfig({
-- 
GitLab