8000 feat(eslint-plugin): remove disallowed return-await (#994) · drabinowitz/typescript-eslint@459f668 · GitHub
[go: up one dir, main page]

Skip to content

Commit 459f668

Browse files
committed
feat(eslint-plugin): remove disallowed return-await (typescript-eslint#994)
1 parent 1f46d45 commit 459f668

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/generate-contributors.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// this endpoint returns a list of contributors sorted by number of contributions
44

55
import * as fs from 'fs';
6-
import * as path from 'path';
76
import 'isomorphic-fetch';
7+
import * as path from 'path';
88

99
const IGNORED_USERS = new Set([
1010
'eslint[bot]',
@@ -73,7 +73,7 @@ async function main(): Promise<void> {
7373
const users = await Promise.all(
7474
githubContributors.map<Promise<User>>(async c => {
7575
const response = await fetch(c.url, { method: 'GET' });
76-
return await response.json();
76+
return response.json();
7777
}),
7878
);
7979

0 commit comments

Comments
 (0)
0