remove no-shadow rule in tests

This commit is contained in:
Tony Brix 2020-12-06 11:09:37 -06:00
parent 0598cb3231
commit 237d1ec471
3 changed files with 11 additions and 1 deletions

View File

@ -8,7 +8,7 @@ module.exports = {
'standard'
],
rules: {
'no-shadow': 'warn',
'no-shadow': 'error',
'no-unused-vars': 'warn'
}
}

View File

@ -0,0 +1,5 @@
module.exports = {
rules: {
'no-shadow': 'off'
}
}

5
test/.eslintrc.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
rules: {
'no-shadow': 'off'
}
}