From 6a89bd9ca41fe0fc1af286154debd2d2ef2b7bea Mon Sep 17 00:00:00 2001 From: Matt Travi Date: Fri, 24 May 2024 22:51:10 -0500 Subject: [PATCH] refactor(prettier): fixed style problems --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 6e432952..3c5eaffb 100644 --- a/index.js +++ b/index.js @@ -31,7 +31,7 @@ export async function analyzeCommits(pluginConfig, context) { const config = await loadParserConfig(pluginConfig, context); let releaseType = null; - const parser = new CommitParser(config) + const parser = new CommitParser(config); const filteredCommits = filterRevertedCommitsSync( commits .filter(({ message, hash }) => { @@ -44,12 +44,12 @@ export async function analyzeCommits(pluginConfig, context) { }) .map((rawCommit) => ({ ...rawCommit, - ...parser.parse(rawCommit.message) + ...parser.parse(rawCommit.message), })) ); for (const { message, ...commit } of filteredCommits) { - console.log(`Analyzing commit: %s`, message) + console.log(`Analyzing commit: %s`, message); logger.log(`Analyzing commit: %s`, message); let commitReleaseType;