@@ -6,7 +6,7 @@ import { PR_repository_pullRequest as GraphqlPullRequest,
66 PR_repository_pullRequest_timelineItems_nodes_ReopenedEvent ,
77 PR_repository_pullRequest_timelineItems_nodes_ReadyForReviewEvent ,
88 PR_repository_pullRequest_timelineItems_nodes_MovedColumnsInProjectEvent ,
9- PR_repository_pullRequest_comments_nodes
9+ PR_repository_pullRequest_comments_nodes ,
1010} from "./queries/schema/PR" ;
1111import { getMonthlyDownloadCount } from "./util/npm" ;
1212import { client } from "./graphql-client" ;
@@ -230,7 +230,7 @@ export async function deriveStateForPR(
230230 popularityLevel,
231231 pkgInfo,
232232 reviews,
233- ...getCIResult ( headCommit . checkSuites )
233+ ...getCIResult ( headCommit . checkSuites ) ,
234234 } ;
235235
236236 function botError ( message : string ) : BotError {
@@ -354,7 +354,7 @@ const configSuspicious = <ConfigSuspicious>(async (path, getContents) => {
354354configSuspicious [ "OTHER_FILES.txt" ] = makeChecker (
355355 [ ] ,
356356 urls . otherFilesTxt ,
357- { parse : text => text . split ( / \r ? \n / ) } ,
357+ { parse : text => text . split ( / \r ? \n / ) }
358358) ;
359359configSuspicious [ "package.json" ] = makeChecker (
360360 { private : true } ,
@@ -363,7 +363,7 @@ configSuspicious["package.json"] = makeChecker(
363363 delete data . dependencies ;
364364 delete data . types ;
365365 delete data . typesVersions ;
366- } } ,
366+ } }
367367) ;
368368configSuspicious [ "tslint.json" ] = makeChecker (
369369 { extends : "dtslint/dt.json" } ,
@@ -380,7 +380,7 @@ configSuspicious["tsconfig.json"] = makeChecker(
380380 strictNullChecks : true ,
381381 types : [ ] ,
382382 noEmit : true ,
383- forceConsistentCasingInFileNames : true
383+ forceConsistentCasingInFileNames : true ,
384384 }
385385 } ,
386386 urls . tsconfigJson ,
@@ -390,7 +390,7 @@ configSuspicious["tsconfig.json"] = makeChecker(
390390 delete data . compilerOptions . typeRoots ;
391391 delete data . compilerOptions . paths ;
392392 delete data . files ;
393- } } ,
393+ } }
394394) ;
395395
396396// helper for file checkers: allow either a given "expectedForm", or any edits that get closer
0 commit comments