From f2c82fcbeab89c7db3b4579c090386619dd93a0a Mon Sep 17 00:00:00 2001 From: Luca Greco Date: Tue, 11 Oct 2016 13:53:20 +0200 Subject: [PATCH] fix: relax max-nested-callback eslint rules for tests. --- test/.eslintrc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/.eslintrc b/test/.eslintrc index e275d67..70b013e 100644 --- a/test/.eslintrc +++ b/test/.eslintrc @@ -1,11 +1,12 @@ { - "extends": "../.eslintrc", "env": { "mocha": true, "node": true, "browser": true, "webextensions": true }, - "globals": { + "globals": {}, + "rules": { + "max-nested-callbacks": ["warn", 6] } -} \ No newline at end of file +}