disable ignoring unused vars prefixed with _ (#1763)

This commit is contained in:
Siddharth Doshi
2017-05-11 19:04:52 +05:30
committed by Dan Abramov
parent 942cf6230c
commit efd99a95f3

View File

@@ -135,8 +135,6 @@ module.exports = {
'no-unused-vars': [
'warn',
{
vars: 'local',
varsIgnorePattern: '^_',
args: 'none',
ignoreRestSiblings: true,
},