From 52733db21d14a9d4e9f67aeea711fa65c9498a35 Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Thu, 11 Jul 2024 08:55:05 +0200 Subject: [PATCH] Remove quotes around `error` in .eslintrc.js for consistency --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 54f89af..5d8910a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -34,7 +34,7 @@ module.exports = { }, ], "no-self-compare": error, - "no-shadow": "error", + "no-shadow": error, "no-template-curly-in-string": error, "no-unmodified-loop-condition": error, "no-unneeded-ternary": warn,