diff --git a/support/lint/browser.jshintrc b/support/lint/browser.jshintrc
index b88c931eee..2a9c65bdd2 100644
--- a/support/lint/browser.jshintrc
+++ b/support/lint/browser.jshintrc
@@ -1,25 +1,25 @@
 {
   "bitwise": true,
   "curly": true,
   "freeze": true,
   "immed": true,
   "indent": 2,
-  "latedef": true,
+  "latedef": "nofunc",
   "newcap": true,
   "noarg": true,
   "quotmark": "single",
   "undef": true,
-  "unused": true,
+  "unused": "vars",
 
   "expr": true,
   "loopfunc": true,
   "sub": true,
 
   "globals": {
     "JX": false,
     "d3": false,
     "__DEV__": false
   },
 
   "browser": true
 }