Skip to content

Commit 8be5599

Browse files
committed
chore: lint fix
1 parent 8f2a86c commit 8be5599

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

packages/cli/src/lib/workflow/JobRunner.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ export class JobRunner {
1414

1515
constructor(
1616
private _configBuilder: IClientConfigBuilder,
17-
private _onExecution?: (id: string, JobResult: JobResult) => MaybeAsync<void>
17+
private _onExecution?: (
18+
id: string,
19+
JobResult: JobResult
20+
) => MaybeAsync<void>
1821
) {
1922
this._jobOutput = new Map();
2023
this._client = new PolywrapClient(this._configBuilder.buildCoreConfig(), {

packages/js/core/src/uri-resolution/UriResolutionContext.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ export class UriResolutionContext implements IUriResolutionContext {
6060
}
6161

6262
createSubHistoryContext(): IUriResolutionContext {
63-
return new UriResolutionContext(this._resolvingUriMap, this._resolutionPath);
63+
return new UriResolutionContext(
64+
this._resolvingUriMap,
65+
this._resolutionPath
66+
);
6467
}
6568

6669
createSubContext(): IUriResolutionContext {

0 commit comments

Comments
 (0)