summaryrefslogtreecommitdiff
path: root/follow-redirects/test/.eslintrc
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-08-20 13:33:12 +0200
committerFlorian Dold <florian@dold.me>2021-08-20 13:33:12 +0200
commitf26125e039143b92dc0d84e7775f508ab0cdcaa8 (patch)
tree09380b684c28cf6beaf3ca084bfcb3b5367bd3d6 /follow-redirects/test/.eslintrc
parent60d8e6acc86d782d9112a462287c8ea8caa66451 (diff)
parentbeab6640fc0ba1fb62735e6faa8e740b2503b26c (diff)
downloadnode-vendor-f26125e039143b92dc0d84e7775f508ab0cdcaa8.tar.gz
node-vendor-f26125e039143b92dc0d84e7775f508ab0cdcaa8.tar.bz2
node-vendor-f26125e039143b92dc0d84e7775f508ab0cdcaa8.zip
Merge commit 'beab6640fc0ba1fb62735e6faa8e740b2503b26c' as 'follow-redirects'
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
+ },
+}