style: lint

This commit is contained in:
Neko Ayaka
2025-10-31 02:02:41 +08:00
parent 04730002cf
commit 58530dae23
14 changed files with 94 additions and 88 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ async function fetchContributors(page = 1) {
const data: Contributor[] = await res.json()
collaborators.push(...data.map(contributor => contributor.login))
if (res.headers.get('Link')?.includes('rel=\"next\"'))
if (res.headers.get('Link')?.includes('rel="next"'))
collaborators.push(...(await fetchContributors(page + 1)))
return collaborators.filter(name => !name.includes('[bot]'))
}