From 7d5889b4def7957ec8cb2b778d90fd19370ee712 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 20 Oct 2021 18:08:27 -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..e513729 --- /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": 10 +}