Skip to content

Commit 883ae4b

Browse files
authored
ESLint: use 'const' instead of 'let'
1 parent 2a1b637 commit 883ae4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update-authors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ rl.on('line', line => {
4747
const match = line.match(authorRe);
4848
if (!match) return;
4949

50-
let {author, email} = match.groups;
50+
const {author, email} = match.groups;
5151

5252
if (seen.has(email) || excludeEmails.includes(email)) {
5353
return;

0 commit comments

Comments
 (0)