From 237d1ec471a153118cef04f0f028d56fb3b7b6de Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Sun, 6 Dec 2020 11:09:37 -0600 Subject: [PATCH] remove no-shadow rule in tests --- .eslintrc.js | 2 +- test-integration/.eslintrc.js | 5 +++++ test/.eslintrc.js | 5 +++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 test-integration/.eslintrc.js create mode 100644 test/.eslintrc.js diff --git a/.eslintrc.js b/.eslintrc.js index dedd41c..c38a75a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -8,7 +8,7 @@ module.exports = { 'standard' ], rules: { - 'no-shadow': 'warn', + 'no-shadow': 'error', 'no-unused-vars': 'warn' } } diff --git a/test-integration/.eslintrc.js b/test-integration/.eslintrc.js new file mode 100644 index 0000000..6d4700e --- /dev/null +++ b/test-integration/.eslintrc.js @@ -0,0 +1,5 @@ +module.exports = { + rules: { + 'no-shadow': 'off' + } +} diff --git a/test/.eslintrc.js b/test/.eslintrc.js new file mode 100644 index 0000000..6d4700e --- /dev/null +++ b/test/.eslintrc.js @@ -0,0 +1,5 @@ +module.exports = { + rules: { + 'no-shadow': 'off' + } +}