@@ -6,7 +6,7 @@ import { PR_repository_pullRequest as GraphqlPullRequest,
6
6
PR_repository_pullRequest_timelineItems_nodes_ReopenedEvent ,
7
7
PR_repository_pullRequest_timelineItems_nodes_ReadyForReviewEvent ,
8
8
PR_repository_pullRequest_timelineItems_nodes_MovedColumnsInProjectEvent ,
9
- PR_repository_pullRequest_comments_nodes
9
+ PR_repository_pullRequest_comments_nodes ,
10
10
} from "./queries/schema/PR" ;
11
11
import { getMonthlyDownloadCount } from "./util/npm" ;
12
12
import { client } from "./graphql-client" ;
@@ -230,7 +230,7 @@ export async function deriveStateForPR(
230
230
popularityLevel,
231
231
pkgInfo,
232
232
reviews,
233
- ...getCIResult ( headCommit . checkSuites )
233
+ ...getCIResult ( headCommit . checkSuites ) ,
234
234
} ;
235
235
236
236
function botError ( message : string ) : BotError {
@@ -354,7 +354,7 @@ const configSuspicious = <ConfigSuspicious>(async (path, getContents) => {
354
354
configSuspicious [ "OTHER_FILES.txt" ] = makeChecker (
355
355
[ ] ,
356
356
urls . otherFilesTxt ,
357
- { parse : text => text . split ( / \r ? \n / ) } ,
357
+ { parse : text => text . split ( / \r ? \n / ) }
358
358
) ;
359
359
configSuspicious [ "package.json" ] = makeChecker (
360
360
{ private : true } ,
@@ -363,7 +363,7 @@ configSuspicious["package.json"] = makeChecker(
363
363
delete data . dependencies ;
364
364
delete data . types ;
365
365
delete data . typesVersions ;
366
- } } ,
366
+ } }
367
367
) ;
368
368
configSuspicious [ "tslint.json" ] = makeChecker (
369
369
{ extends : "dtslint/dt.json" } ,
@@ -380,7 +380,7 @@ configSuspicious["tsconfig.json"] = makeChecker(
380
380
strictNullChecks : true ,
381
381
types : [ ] ,
382
382
noEmit : true ,
383
- forceConsistentCasingInFileNames : true
383
+ forceConsistentCasingInFileNames : true ,
384
384
}
385
385
} ,
386
386
urls . tsconfigJson ,
@@ -390,7 +390,7 @@ configSuspicious["tsconfig.json"] = makeChecker(
390
390
delete data . compilerOptions . typeRoots ;
391
391
delete data . compilerOptions . paths ;
392
392
delete data . files ;
393
- } } ,
393
+ } }
394
394
) ;
395
395
396
396
// helper for file checkers: allow either a given "expectedForm", or any edits that get closer
0 commit comments