From 33f1294f07a884ca2628fb6d8dc648bd18b25fbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Cederstr=C3=B6m?= Date: Fri, 23 Mar 2018 14:41:28 +0100 Subject: [PATCH] Revert "Change no-unused-vars 'args' from none to all to show warning on destructured objects" This reverts commit 1dcb3db3edb809e64208c0540a7de0d41fc9f6ce. --- packages/eslint-config-react-app/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-config-react-app/index.js b/packages/eslint-config-react-app/index.js index 8527793542c..54dfe334733 100644 --- a/packages/eslint-config-react-app/index.js +++ b/packages/eslint-config-react-app/index.js @@ -131,7 +131,7 @@ module.exports = { 'no-unused-vars': [ 'warn', { - args: 'all', + args: 'none', ignoreRestSiblings: true, }, ],