summaryrefslogtreecommitdiff
path: root/follow-redirects/test/.eslintrc
diff options
context:
space:
mode:
Diffstat (limited to 'follow-redirects/test/.eslintrc')
-rw-r--r--follow-redirects/test/.eslintrc16
1 files changed, 16 insertions, 0 deletions
diff --git a/follow-redirects/test/.eslintrc b/follow-redirects/test/.eslintrc
new file mode 100644
index 0000000..3233623
--- /dev/null
+++ b/follow-redirects/test/.eslintrc
@@ -0,0 +1,16 @@
+{
+ globals: {
+ describe: true,
+ it: true,
+ before: true,
+ after: true,
+ beforeEach: true,
+ afterEach: true,
+ expect: true,
+ },
+
+ rules: {
+ no-sync: "off", // allow sync methods
+ max-nested-callbacks: "off", // Mocha works with deeply nested callbacks
+ },
+}