Skip to content

Commit

Permalink
chore(lint): fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz Schmitz von Hülst committed Sep 2, 2021
1 parent c728311 commit 8ddf2c2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/success.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,14 @@ export function getTickets(config: PluginConfig, context: GenerateNotesContext):
return [...tickets];
}

async function findOrCreateVersion(config: PluginConfig, context: GenerateNotesContext, jira: Version3Client, project: Version3.Version3Models.Project, name: string, description: string, activeSprint: Sprint | undefined): Promise<Version3.Version3Models.Version> {
async function findOrCreateVersion(
config: PluginConfig,
context: GenerateNotesContext,
jira: Version3Client,
project: Version3.Version3Models.Project,
name: string,
description: string,
activeSprint: Sprint | undefined): Promise<Version3.Version3Models.Version> {
const remoteVersions = project.versions;
context.logger.info(`Looking for version with name '${name}'`);
const existing = _.find(remoteVersions, { name });
Expand Down

0 comments on commit 8ddf2c2

Please sign in to comment.