add no-redeclare
This commit is contained in:
parent
6412156210
commit
92abace743
1 changed files with 2 additions and 1 deletions
|
@ -60,7 +60,8 @@ module.exports = {
|
||||||
'no-var': ['error'],
|
'no-var': ['error'],
|
||||||
'space-before-blocks': ['error'],
|
'space-before-blocks': ['error'],
|
||||||
'space-infix-ops': 'error',
|
'space-infix-ops': 'error',
|
||||||
'yoda': 'error'
|
'yoda': 'error',
|
||||||
|
'no-redeclare': ['error', { 'builtinGlobals': true }]
|
||||||
},
|
},
|
||||||
settings: {
|
settings: {
|
||||||
react: {
|
react: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue