From eda32a4f8e5ef081039c23b788a72e460667e2e3 Mon Sep 17 00:00:00 2001 From: pyoor Date: Thu, 6 Apr 2017 12:56:38 +0200 Subject: [PATCH] Initial commit of jshint rules --- .jshintrc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .jshintrc diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..ba30a6c --- /dev/null +++ b/.jshintrc @@ -0,0 +1,16 @@ +{ + "curly": true, + "eqeqeq": true, + "immed": true, + "latedef": "nofunc", + "newcap": true, + "noarg": true, + "sub": true, + "undef": true, + "unused": true, + "boss": true, + "eqnull": true, + "node": true, + "maxerr": 2000, + "esversion": 6 +}