diff --git a/.jshintignore b/.jshintignore new file mode 100644 index 0000000..7aa4a0b --- /dev/null +++ b/.jshintignore @@ -0,0 +1,2 @@ +node_modules +.tmp diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..4cb0edb --- /dev/null +++ b/.jshintrc @@ -0,0 +1,21 @@ +{ + // Enforcing options + "bitwise": true, + "camelcase": true, + "curly": true, + "eqeqeq": true, + "forin": true, + "freeze": true, + "immed": true, + "indent": 2, + "latedef": true, + "quotmark": "single", + "undef": true, + "unused": true, + "strict": true, + "trailing": true, + "maxlen": 80, + + // Environments + "node": true +}