Skip to content

Commit

Permalink
Apply lints
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Dec 19, 2024
1 parent 93982ed commit 34d1353
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export async function findProjectRootAsync({
}
}

let ranEnsureEasCliIsNotInDependenciesAsync = false;
let ranEnsureEasCliIsNotInDependencies = false;

/**
* Determine the project root directory and ensure some constraints about the project setup
Expand All @@ -115,8 +115,8 @@ let ranEnsureEasCliIsNotInDependenciesAsync = false;
export async function findProjectDirAndVerifyProjectSetupAsync(): Promise<string> {
const projectDir = await findProjectRootAsync();
await applyCliConfigAsync(projectDir);
if (!ranEnsureEasCliIsNotInDependenciesAsync) {
ranEnsureEasCliIsNotInDependenciesAsync = true;
if (!ranEnsureEasCliIsNotInDependencies) {
ranEnsureEasCliIsNotInDependencies = true;
await ensureEasCliIsNotInDependenciesAsync(projectDir);
}
return projectDir;
Expand Down

0 comments on commit 34d1353

Please sign in to comment.