From 883ae4b5e1aacd8cf30694da33b391ce58f4cca8 Mon Sep 17 00:00:00 2001 From: Juerg B <44573692+juergba@users.noreply.github.com> Date: Sat, 1 Feb 2020 09:19:43 +0100 Subject: [PATCH] ESLint: use 'const' instead of 'let' --- scripts/update-authors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update-authors.js b/scripts/update-authors.js index 4ec0e03137..6e5d214f30 100755 --- a/scripts/update-authors.js +++ b/scripts/update-authors.js @@ -47,7 +47,7 @@ rl.on('line', line => { const match = line.match(authorRe); if (!match) return; - let {author, email} = match.groups; + const {author, email} = match.groups; if (seen.has(email) || excludeEmails.includes(email)) { return;