From 7d96e1e0caaa9e7048bbb821b51478222fd1700a Mon Sep 17 00:00:00 2001 From: Mariusz Nowak Date: Wed, 29 May 2019 13:53:16 +0200 Subject: [PATCH] Document disabling of rule --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 2eb9d17db..ed670cf65 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -5,10 +5,10 @@ module.exports = { "rules": { "func-names": "off", "global-require": "off", // Interfers with optional and eventual circular references + "react/require-extension": "off", // Forced by airbnb, not applicable (also deprecated) "strict": ["error", "safe"], // airbnb implies we're transpiling with babel, we're not // doesn't work in node v4 :( - "react/require-extension": "off", "import/no-extraneous-dependencies": "off" }, "parserOptions": {