From 01d10962f701afd77c9f2738d0db05bc9440bc98 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Wed, 17 Dec 2014 11:29:45 -0300 Subject: [PATCH] update .jshintrc --- .jshintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jshintrc b/.jshintrc index 82597a3..dbc5bcf 100644 --- a/.jshintrc +++ b/.jshintrc @@ -10,7 +10,7 @@ "immed": true, // Require immediate invocations to be wrapped in parens e.g. `( function(){}() );` "indent": 2, // Specify indentation spacing "latedef": true, // Prohibit variable use before definition. - "newcap": false, // Require capitalization of all constructor functions e.g. `new F()`. + "newcap": true, // Require capitalization of all constructor functions e.g. `new F()`. "noarg": true, // Prohibit use of `arguments.caller` and `arguments.callee`. "node": true, // Enable globals available when code is running inside of the NodeJS runtime environment. "noempty": true, // Prohibit use of empty blocks.