Unable to find source-code formatter for language: groovy. Available languages are: actionscript, html, java, javascript, none, sql, xhtml, xml
pipeline {
agent none
stages {
stage("foo") {
echo '''Hello!
'How are you?', said script A
"I am fine \'\'\'really\'\'\'" said script B
'''
sh 'echo "\'quoted\'"'
}
}
}