Skip to content

Commit

Permalink
ESLint: use 'const' instead of 'let'
Browse files Browse the repository at this point in the history
  • Loading branch information
juergba committed Feb 1, 2020
1 parent 2a1b637 commit 883ae4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/update-authors.js
Expand Up @@ -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;
Expand Down

0 comments on commit 883ae4b

Please sign in to comment.