summaryrefslogtreecommitdiff
path: root/lib/retry/.jshintrc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/retry/.jshintrc')
-rw-r--r--lib/retry/.jshintrc29
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/retry/.jshintrc b/lib/retry/.jshintrc
new file mode 100644
index 0000000..76be34a
--- /dev/null
+++ b/lib/retry/.jshintrc
@@ -0,0 +1,29 @@
+{
+ // Enforcing options
+ "eqeqeq": false,
+ "forin": true,
+ "indent": 4,
+ "noarg": true,
+ "undef": true,
+ "unused": true,
+ "trailing": true,
+ "evil": true,
+ "laxcomma": true,
+
+ // Relaxing options
+ "onevar": false,
+ "asi": false,
+ "eqnull": true,
+ "expr": false,
+ "loopfunc": true,
+ "sub": true,
+ "browser": true,
+ "node": true,
+ "globals": {
+ "self": true,
+ "define": true,
+ "describe": true,
+ "context": true,
+ "it": true
+ }
+}