From 2990abafd1f8cb5eaa01ed5854f47de90500f4c6 Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Mon, 3 Oct 2022 11:33:40 -0700 Subject: [PATCH] chore(lint): break up long config line to make lint happy --- release.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/release.config.js b/release.config.js index 57ad76f..3915249 100644 --- a/release.config.js +++ b/release.config.js @@ -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.)")}' } ], [