Skip to content

Commit

Permalink
Fix linter problems
Browse files Browse the repository at this point in the history
  • Loading branch information
joluj committed Jul 30, 2024
1 parent cef3fe9 commit 1ebf808
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/interpreter/src/run-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function parseRunOptions(
pipeline: options.pipeline,
env: options.env,
debug: options.debug === true || options.debug === 'true',
debugGranularity: options.debugGranularity as DebugGranularity,
debugGranularity: options.debugGranularity,
debugTarget: getDebugTargets(options.debugTarget),
parseOnly: options.parseOnly === true || options.parseOnly === 'true',
};
Expand Down
2 changes: 1 addition & 1 deletion libs/language-server/src/lib/ast/wrappers/pipe-wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class PipeWrapper<
assert(pipe.blocks[chainIndex]?.ref !== undefined);
assert(pipe.blocks[chainIndex + 1]?.ref !== undefined);
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
this.from = pipe.blocks[chainIndex]!.ref!;
this.from = pipe.blocks[chainIndex].ref!;
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
this.to = pipe.blocks[chainIndex + 1]!.ref!;
this.chainIndex = chainIndex;
Expand Down

0 comments on commit 1ebf808

Please sign in to comment.