Skip to content

Commit

Permalink
refactor(prettier): fixed style problems
Browse files Browse the repository at this point in the history
  • Loading branch information
travi committed May 25, 2024
1 parent 3953810 commit 6a89bd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand All @@ -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;

Expand Down

0 comments on commit 6a89bd9

Please sign in to comment.