I have Groovy code like this:
'''
function (doc, meta) {
if (doc._class == "springdata.Doc") {
emit(meta.id, null);
}
}
'''.stripIndent()
and when I use removeSemicolons() with my spotless Gradle plugin it removes ; for emit(meta.id, null);
That is not expected. Is that possible to fix?