From dcd41a33d00246d32516352f1f5bf430eceae26f Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 18 Oct 2021 00:47:39 -0600 Subject: [PATCH] chore: add linter config --- .jshintrc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .jshintrc diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..e081240 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,22 @@ +{ + "browser": true, + "node": true, + "esversion": 11, + "curly": true, + "sub": true, + "bitwise": true, + "eqeqeq": true, + "forin": true, + "freeze": true, + "immed": true, + "latedef": "nofunc", + "nonbsp": true, + "nonew": true, + "plusplus": true, + "undef": true, + "unused": "vars", + "strict": true, + "maxdepth": 3, + "maxstatements": 100, + "maxcomplexity": 40 +}