From 25e93fe4dcb1b7a54f311636e6712b5a7a1c38d8 Mon Sep 17 00:00:00 2001 From: David Schnur Date: Thu, 11 Apr 2013 21:20:13 -0400 Subject: [PATCH] Added a .jshintrc for the Travis JSHint step. --- .jshintrc | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .jshintrc diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..42653e6 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,19 @@ +{ + "bitwise": true, + "boss": true, + "curly": true, + "eqeqeq": true, + "eqnull": true, + "expr": true, + "forin": true, + "immed": true, + "noarg": true, + "quotmark": "double", + "smarttabs": true, + "trailing": true, + "undef": true, + "unused": true, + + "browser": true, + "jquery": true +}