remove no-shadow rule in tests
This commit is contained in:
parent
0598cb3231
commit
237d1ec471
|
@ -8,7 +8,7 @@ module.exports = {
|
||||||
'standard'
|
'standard'
|
||||||
],
|
],
|
||||||
rules: {
|
rules: {
|
||||||
'no-shadow': 'warn',
|
'no-shadow': 'error',
|
||||||
'no-unused-vars': 'warn'
|
'no-unused-vars': 'warn'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
module.exports = {
|
||||||
|
rules: {
|
||||||
|
'no-shadow': 'off'
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,5 @@
|
||||||
|
module.exports = {
|
||||||
|
rules: {
|
||||||
|
'no-shadow': 'off'
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue