作者:弥晓潞_509 | 来源:互联网 | 2023-10-10 13:06
I've been trying to find the option of inserting a blank line before the closing '}' of the class and have not found it.
我一直试图找到在类的结束'}'之前插入一个空行并且没有找到它的选项。
My goal is to format
我的目标是格式化
interface IShooter {
void incHealth(); // health++
void decHealth(); // health--
int getHealth();
}
to this
interface IShooter {
void incHealth(); // health++
void decHealth(); // health--
int getHealth();
}
1 个解决方案