Browse Source

Disable unsafe character check in jshint

This check is causing warnings on the Kannada translation.

// FREEBIE
lilia 8 years ago
parent
commit
1eca153ced
1 changed files with 3 additions and 2 deletions
  1. 3 2
      .jshintrc

+ 3 - 2
.jshintrc

@@ -67,5 +67,6 @@
     "worker"        : false,
     "wsh"           : false,
     "yui"           : false,
-    "globals"       : {}
-}
+    "globals"       : {},
+    "-W100"         : true
+}