Skip to content

Commit 2990aba

Browse files
committed
chore(lint): break up long config line to make lint happy
1 parent 7d40354 commit 2990aba

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

release.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ module.exports = {
1919
'@semantic-release/git',
2020
{
2121
// eslint-disable-next-line no-template-curly-in-string
22-
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n${(nextRelease.notes.length < 32000) ? nextRelease.notes : (nextRelease.notes.slice(0,32000) + "...\\n\\n(Notes too long. Truncated.)")}'
22+
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n' +
23+
'${(nextRelease.notes.length < 32000) ? ' +
24+
'nextRelease.notes : (nextRelease.notes.slice(0,32000) + "...\\n\\n(Notes too long. Truncated.)")}'
2325
}
2426
],
2527
[

0 commit comments

Comments
 (0)