From 6165a233c5f35bdf3538103f4a6cdcac4a560d6d Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 17 Oct 2016 16:43:40 +0700 Subject: [PATCH] linting: turn off the `no-use-extend-native` rule We use Bluebird methods in too many places. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 1d78dd2b9..f16a20568 100644 --- a/package.json +++ b/package.json @@ -189,7 +189,8 @@ }, "xo": { "rules": { - "import/newline-after-import": "off" + "import/newline-after-import": "off", + "no-use-extend-native/no-use-extend-native": "off" } } }