Skip to content

Commit 1e3c06a

Browse files
committed
fix: fix lint issues
1 parent 98e4310 commit 1e3c06a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/upgrade/upgradeManager.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ class UpgradeManager {
6666
projectUri: folder.uri.toString(),
6767
});
6868
const isMavenGradleProject = projectData.some(
69-
(dep) => dep.kind === NodeKind.Container && (dep.path?.startsWith(ContainerPath.Maven) || dep.path?.startsWith(ContainerPath.Gradle))
69+
(dep) => dep.kind === NodeKind.Container &&
70+
(dep.path?.startsWith(ContainerPath.Maven) || dep.path?.startsWith(ContainerPath.Gradle))
7071
);
7172
if (!isMavenGradleProject) {
7273
sendInfo(_operationId, { "skipReason": "notMavenGradleProject" });

0 commit comments

Comments
 (0)