Code format question
Is there some set of settings in the code settings to force a blank line before the right brace on a catch or finally?
Something like this:
try {
... // stuff
<-- blank line here
} catch (Something e) {
...
<-- blank line here
} finally {
imDone();
}
请先登录再写评论。
No, but I'd like this too, also for else statements.