Skip to content

Commit 117351f

Browse files
authored
refactor: Fix lint (#2706)
1 parent 78f9fbe commit 117351f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.releaserc.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,10 @@ async function config() {
3030

3131
// Get branch
3232
const branch = ref?.split('/')?.pop()?.split('-')[0] || '(current branch could not be determined)';
33-
// eslint-disable-next-line no-console
3433
console.log(`Running on branch: ${branch}`);
3534

3635
// Set changelog file
3736
const changelogFile = `./changelogs/CHANGELOG_${branch}.md`;
38-
// eslint-disable-next-line no-console
3937
console.log(`Changelog file output to: ${changelogFile}`);
4038

4139
// Load template file contents
@@ -94,9 +92,9 @@ async function config() {
9492
}],
9593
// Back-merge module runs last because if it fails it should not impede the release process
9694
[
97-
"@saithodev/semantic-release-backmerge",
95+
'@saithodev/semantic-release-backmerge',
9896
{
99-
"backmergeBranches": [
97+
'backmergeBranches': [
10098
// { from: 'beta', to: 'alpha' },
10199
// { from: 'release', to: 'beta' },
102100
{ from: 'release', to: 'alpha' },

0 commit comments

Comments
 (0)