summaryrefslogtreecommitdiff
path: root/.jshintrc
diff options
context:
space:
mode:
Diffstat (limited to '.jshintrc')
-rw-r--r--.jshintrc29
1 files changed, 29 insertions, 0 deletions
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000..1c271e2
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,29 @@
+{
+ "node": true,
+ "esnext": true,
+ "bitwise": true,
+ "camelcase": true,
+ "curly": true,
+ "eqeqeq": true,
+ "immed": true,
+ "indent": 2,
+ "latedef": "nofunc",
+ "newcap": false,
+ "noarg": true,
+ "quotmark": "single",
+ "regexp": true,
+ "undef": true,
+ "unused": false,
+ "strict": false,
+ "trailing": true,
+ "smarttabs": true,
+ "white": false,
+ "globals": {
+ "it": true,
+ "describe": true,
+ "before": true,
+ "beforeEach": true,
+ "after": true,
+ "afterEach": true
+ }
+}