From 7bce47d43c0e4f2d32c740013a7e85601f3e0812 Mon Sep 17 00:00:00 2001 From: Viktor Varland Date: Wed, 29 Apr 2020 13:33:10 +0200 Subject: [PATCH] fix: disabled missingExports by default --- config/js/eslint-react.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/js/eslint-react.config.js b/config/js/eslint-react.config.js index 64f2779a..0b0ede53 100644 --- a/config/js/eslint-react.config.js +++ b/config/js/eslint-react.config.js @@ -27,7 +27,7 @@ module.exports = { 'error', { unusedExports: true, - missingExports: true, + missingExports: false, }, ], },