Skip to content

Commit

Permalink
chore(lint): break up long config line to make lint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
cwillisf committed Oct 3, 2022
1 parent 7d40354 commit 2990aba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ module.exports = {
'@semantic-release/git',
{
// eslint-disable-next-line no-template-curly-in-string
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.)")}'
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.)")}'
}
],
[
Expand Down

0 comments on commit 2990aba

Please sign in to comment.