From 83723379a232a803355436cf97b12ac330b1d792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Thu, 13 Nov 2014 15:33:23 +0100 Subject: [PATCH] Clean up .jshintrc jshint does not support `trailing` as of v1.5.0. Remove `maxlen` too, jscs provides better implementation. Fix definition of global mocha variables - mark them as immutable. --- .jshintrc | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.jshintrc b/.jshintrc index 3f23a40..9260a27 100644 --- a/.jshintrc +++ b/.jshintrc @@ -7,18 +7,16 @@ "undef": true, "unused": true, "quotmark": "single", -"maxlen": 80, -"trailing": true, "newcap": true, "nonew": true, "sub": true, "unused": "vars", "globals": { - "describe": true, - "it": true, - "before": true, - "beforeEach": true, - "after": true, - "afterEach": true + "describe": false, + "it": false, + "before": false, + "beforeEach": false, + "after": false, + "afterEach": false } }