Skip to content

Commit 6a89bd9

Browse files
committed
refactor(prettier): fixed style problems
1 parent 3953810 commit 6a89bd9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function analyzeCommits(pluginConfig, context) {
3131
const config = await loadParserConfig(pluginConfig, context);
3232
let releaseType = null;
3333

34-
const parser = new CommitParser(config)
34+
const parser = new CommitParser(config);
3535
const filteredCommits = filterRevertedCommitsSync(
3636
commits
3737
.filter(({ message, hash }) => {
@@ -44,12 +44,12 @@ export async function analyzeCommits(pluginConfig, context) {
4444
})
4545
.map((rawCommit) => ({
4646
...rawCommit,
47-
...parser.parse(rawCommit.message)
47+
...parser.parse(rawCommit.message),
4848
}))
4949
);
5050

5151
for (const { message, ...commit } of filteredCommits) {
52-
console.log(`Analyzing commit: %s`, message)
52+
console.log(`Analyzing commit: %s`, message);
5353
logger.log(`Analyzing commit: %s`, message);
5454
let commitReleaseType;
5555

0 commit comments

Comments
 (0)