Skip to content

Commit 037984f

Browse files
authored
fix lint errors
1 parent 415efe2 commit 037984f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/js/08-contributor-bot.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
.reverse()
6363
.map(function (contributor, index, arrayobj) {
6464
//show only top 5 contributor
65-
if (index <= 4) {
65+
if (index <= 4) {
6666
var contributorAvtar = contributor.author.avatar_url
6767
// var contributorTotalCommit = contributor.total
6868
var authorURL = contributor.author.html_url
@@ -77,8 +77,8 @@
7777
li.appendChild(anchor)
7878
anchor.appendChild(image)
7979
contributorList.appendChild(li)
80-
}
81-
})
80+
}
81+
})
8282
})
8383
.catch(function (err) {
8484
console.log(err, 13)

0 commit comments

Comments
 (0)