Skip to content

Commit

Permalink
missing
Browse files Browse the repository at this point in the history
  • Loading branch information
dplumlee committed Jun 21, 2024
1 parent 65faf40 commit e63fc0a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,19 +74,19 @@ export const determineOrderAgnosticDiffOutcome = <TValue>(
};

interface DetermineDiffOutcomeProps {
hasBaseVersion: boolean;
baseEqlCurrent: boolean;
baseEqlTarget: boolean;
currentEqlTarget: boolean;
hasBaseVersion: boolean;
}

const getThreeWayDiffOutcome = ({
hasBaseVersion,
baseEqlCurrent,
baseEqlTarget,
currentEqlTarget,
hasBaseVersion,
}: DetermineDiffOutcomeProps): ThreeWayDiffOutcome => {
if (hasBaseVersion) {
if (!hasBaseVersion) {
/**
* We couldn't find the base version of the rule in the package so further
* version comparison is not possible. We assume that the rule is not
Expand Down

0 comments on commit e63fc0a

Please sign in to comment.