From 3dc66fd34ca3f7573469ca0b6d5181e28baf3faa Mon Sep 17 00:00:00 2001 From: Santhosh Thottingal Date: Wed, 10 Oct 2012 18:07:18 +0530 Subject: [PATCH] Add .jshintrc Change-Id: I2d2ee30da8bf6dad928e1027e67537310eb103dd --- .jshintrc | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .jshintrc diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 00000000..bed1afa5 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,28 @@ +{ + "predef": [ + "jQuery", + "QUnit", + "_" + ], + + "camelcase": true, + "curly": true, + "eqeqeq": true, + "immed": true, + "latedef": true, + "newcap": true, + "noarg": true, + "noempty": true, + "nonew": true, + "plusplus": false, + "quotmark": "single", + "undef": true, + "unused": true, + "strict": true, + "trailing": true, + "laxbreak": true, + "browser": true, + "nomen": true, + "onevar": true, + "white": false +}