Coffeescript + Reformat code
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
请先登录再写评论。
Konstantin, it's a bug. I've created issue http://youtrack.jetbrains.com/issue/WEB-7819. Please vote for it so that receive notification
Done