Change no-unused-vars 'args' from none to all to show warning on destructured objects

This commit is contained in:
goncy
2018-03-20 08:27:23 -03:00
parent cb3f835586
commit 1dcb3db3ed

View File

@@ -131,7 +131,7 @@ module.exports = {
'no-unused-vars': [
'warn',
{
args: 'none',
args: 'all',
ignoreRestSiblings: true,
},
],