From 5dae97b60d4772b34a1953d7100dfae62198f2ab Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Fri, 15 Sep 2017 18:43:18 -0600 Subject: [PATCH] add .jshintrc --- .jshintrc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .jshintrc diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..63801ce --- /dev/null +++ b/.jshintrc @@ -0,0 +1,16 @@ +{ "node": true +, "browser": true +, "jquery": true +, "strict": true +, "indent": 2 +, "onevar": true +, "laxcomma": true +, "laxbreak": true +, "eqeqeq": true +, "immed": true +, "undef": true +, "unused": true +, "latedef": true +, "curly": true +, "trailing": true +}