Hi.
Intellij (12.1.3)
Coffescript code:
test = (x)-> x += 10 x *= 10 return
myFunc = -> test(10)
After code reformating look like
test = (x)-> x += 10 x *= 10
return
myFunc = -> test(10)
Pay attention to position of word "return"
It is bug?
Before:
After:
My code style settings for coffeescript:
Thanks in advance