From 77d85a777e15ac9221530cf7ee87b5e2d4414527 Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 15 Feb 2016 11:50:12 +0100 Subject: [PATCH] stricter jshint complaints --- .jshintrc | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index ad70ca4fd..96ff8df7f 100644 --- a/.jshintrc +++ b/.jshintrc @@ -2,5 +2,14 @@ "laxcomma": true, "laxbreak": true, "node": true, - "sub": true + "sub": true, + "curly": true, + "eqeqeq": true, + "iterator": true, + "latedef": true, + "nocomma": true, + "notypeof": true, + "shadow": false, + "undef": true, + "unused": false }