From dc81cde4ab31c42f358d054548c9fccb3d70b7fc Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Tue, 18 Jun 2013 17:11:08 -0400 Subject: [PATCH] Grunt: stricter JSHint settings --- Gruntfile.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Gruntfile.js b/Gruntfile.js index 1c9f83c8..c568ccce 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -148,9 +148,14 @@ module.exports = function(grunt) { jshint: { options: { browser: true, + curly: true, eqeqeq: false, loopfunc: false, + noarg: true, trailing: true, + undef: true, + unused: true, + globals: { OpenSeadragon: true }